All of lore.kernel.org
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <k.kozlowski@samsung.com>
To: Daniel Lezcano <daniel.lezcano@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Dan Williams <dan.j.williams@intel.com>,
	Vinod Koul <vinod.koul@intel.com>,
	Jason Cooper <jason@lakedaemon.net>,
	Marc Zyngier <marc.zyngier@arm.com>,
	Mauro Carvalho Chehab <mchehab@osg.samsung.com>,
	Lee Jones <lee.jones@linaro.org>,
	Giuseppe Cavallaro <peppe.cavallaro@st.com>,
	Kishon Vijay Abraham I <kishon@ti.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	Sebastian Reichel <sre@kernel.org>,
	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>,
	David Woodhouse <dwmw2@infradead.org>,
	Alessandro Zummo <a.zummo@towertech.it>,
	Alexandre Belloni <alexandre.belloni@free-electrons.com>,
	Andy Gross <andy.gross@linaro.org>,
	David Brown <david.brown@linaro.org>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-kernel@vger.kernel.org, dmaengine@vger.kernel.org,
	linux-media@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, netdev@vger.kernel.org,
	linux-gpio@vger.kernel.org, linux-pm@vger.kernel.org,
	rtc-linux@googlegroups.com, linux-arm-msm@vger.kernel.org,
	linux-soc@vger.kernel.org, devel@driverdev.osuosl.org,
	linux-usb@vger.kernel.org
Cc: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Subject: [RFC 15/15] mfd: syscon: Fix build of missing ioremap on UM
Date: Thu, 03 Mar 2016 17:03:41 +0900	[thread overview]
Message-ID: <1456992221-26712-16-git-send-email-k.kozlowski@samsung.com> (raw)
In-Reply-To: <1456992221-26712-1-git-send-email-k.kozlowski@samsung.com>

Since commit c89c0114955a ("mfd: syscon: Set regmap max_register in
of_syscon_register") the syscon uses ioremap so it fails on COMPILE_TEST
without HAS_IOMEM:

drivers/mfd/syscon.c: In function ‘of_syscon_register’:
drivers/mfd/syscon.c:67:9: error: implicit declaration of function ‘ioremap’ [-Werror=implicit-function-declaration]
  base = ioremap(res.start, resource_size(&res));
         ^
drivers/mfd/syscon.c:67:7: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
  base = ioremap(res.start, resource_size(&res));
       ^
drivers/mfd/syscon.c:109:2: error: implicit declaration of function ‘iounmap’ [-Werror=implicit-function-declaration]
  iounmap(base);

When selecting MFD_SYSCON, depend on HAS_IOMEM to avoid unmet direct
dependencies.

Reported-by: kbuild test robot <lkp@intel.com>
Fixes: c89c0114955a ("mfd: syscon: Set regmap max_register in of_syscon_register")
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
---
 drivers/mfd/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index aa21dc55eb15..2e5b1e525a1d 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -1034,6 +1034,7 @@ config MFD_SUN6I_PRCM
 
 config MFD_SYSCON
 	bool "System Controller Register R/W Based on Regmap"
+	depends on HAS_IOMEM
 	select REGMAP_MMIO
 	help
 	  Select this option to enable accessing system control registers
-- 
2.5.0

WARNING: multiple messages have this Message-ID (diff)
From: Krzysztof Kozlowski <k.kozlowski@samsung.com>
To: Daniel Lezcano <daniel.lezcano@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Dan Williams <dan.j.williams@intel.com>,
	Vinod Koul <vinod.koul@intel.com>,
	Jason Cooper <jason@lakedaemon.net>,
	Marc Zyngier <marc.zyngier@arm.com>,
	Mauro Carvalho Chehab <mchehab@osg.samsung.com>,
	Lee Jones <lee.jones@linaro.org>,
	Giuseppe Cavallaro <peppe.cavallaro@st.com>,
	Kishon Vijay Abraham I <kishon@ti.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	Sebastian Reichel <sre@kernel.org>,
	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>,
	David Woodhouse <dwmw2@infradead.org>,
	Alessandro Zummo <a.zummo@towertech.it>,
	Alexandre Belloni <alexandre.belloni@free-electrons.com>,
	Andy Gross <andy.gross@linaro.org>,
	David Brown <david.brown@linaro.org>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-kernel@vger.kernel.org, dmaengine@vger.kernel.org,
	linux-media@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, netdev@vger.kernel.org,
	linux-gpio@vger.kernel.org, linux-pm@vger.kernel.org,
	rtc-linux@googlegroups.com, linux-arm-msm@vger.kernel.org,
	linux-soc@vger.kernel.org, devel@driverdev.osuosl.org,
	linux-usb@vger.kernel.org
Cc: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Subject: [rtc-linux] [RFC 15/15] mfd: syscon: Fix build of missing ioremap on UM
Date: Thu, 03 Mar 2016 17:03:41 +0900	[thread overview]
Message-ID: <1456992221-26712-16-git-send-email-k.kozlowski@samsung.com> (raw)
In-Reply-To: <1456992221-26712-1-git-send-email-k.kozlowski@samsung.com>

Since commit c89c0114955a ("mfd: syscon: Set regmap max_register in
of_syscon_register") the syscon uses ioremap so it fails on COMPILE_TEST
without HAS_IOMEM:

drivers/mfd/syscon.c: In function =E2=80=98of_syscon_register=E2=80=99:
drivers/mfd/syscon.c:67:9: error: implicit declaration of function =E2=80=
=98ioremap=E2=80=99 [-Werror=3Dimplicit-function-declaration]
  base =3D ioremap(res.start, resource_size(&res));
         ^
drivers/mfd/syscon.c:67:7: warning: assignment makes pointer from integer w=
ithout a cast [-Wint-conversion]
  base =3D ioremap(res.start, resource_size(&res));
       ^
drivers/mfd/syscon.c:109:2: error: implicit declaration of function =E2=80=
=98iounmap=E2=80=99 [-Werror=3Dimplicit-function-declaration]
  iounmap(base);

When selecting MFD_SYSCON, depend on HAS_IOMEM to avoid unmet direct
dependencies.

Reported-by: kbuild test robot <lkp@intel.com>
Fixes: c89c0114955a ("mfd: syscon: Set regmap max_register in of_syscon_reg=
ister")
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
---
 drivers/mfd/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index aa21dc55eb15..2e5b1e525a1d 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -1034,6 +1034,7 @@ config MFD_SUN6I_PRCM
=20
 config MFD_SYSCON
 	bool "System Controller Register R/W Based on Regmap"
+	depends on HAS_IOMEM
 	select REGMAP_MMIO
 	help
 	  Select this option to enable accessing system control registers
--=20
2.5.0

--=20
--=20
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---=20
You received this message because you are subscribed to the Google Groups "=
rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

WARNING: multiple messages have this Message-ID (diff)
From: Krzysztof Kozlowski <k.kozlowski@samsung.com>
To: Daniel Lezcano <daniel.lezcano@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Dan Williams <dan.j.williams@intel.com>,
	Vinod Koul <vinod.koul@intel.com>,
	Jason Cooper <jason@lakedaemon.net>,
	Marc Zyngier <marc.zyngier@arm.com>,
	Mauro Carvalho Chehab <mchehab@osg.samsung.com>,
	Lee Jones <lee.jones@linaro.org>,
	Giuseppe Cavallaro <peppe.cavallaro@st.com>,
	Kishon Vijay Abraham I <kishon@ti.com>,
	Linus Walleij <linus.walleij@linaro.org>,
	Sebastian Reichel <sre@kernel.org>,
	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>,
	David Woodhouse <dwmw2@infradead.org>,
	Alessandro Zummo <a.zummo@towertech.it>,
	Alexandre Belloni <alexandre.belloni@free-electrons.com>,
	Andy Gross <andy.gross@linaro.org>,
	David Brown <david.brown@linaro.org>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-kernel@vger.kernel.org, dmaen
Cc: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Subject: [RFC 15/15] mfd: syscon: Fix build of missing ioremap on UM
Date: Thu, 03 Mar 2016 17:03:41 +0900	[thread overview]
Message-ID: <1456992221-26712-16-git-send-email-k.kozlowski@samsung.com> (raw)
In-Reply-To: <1456992221-26712-1-git-send-email-k.kozlowski@samsung.com>

Since commit c89c0114955a ("mfd: syscon: Set regmap max_register in
of_syscon_register") the syscon uses ioremap so it fails on COMPILE_TEST
without HAS_IOMEM:

drivers/mfd/syscon.c: In function ‘of_syscon_register’:
drivers/mfd/syscon.c:67:9: error: implicit declaration of function ‘ioremap’ [-Werror=implicit-function-declaration]
  base = ioremap(res.start, resource_size(&res));
         ^
drivers/mfd/syscon.c:67:7: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
  base = ioremap(res.start, resource_size(&res));
       ^
drivers/mfd/syscon.c:109:2: error: implicit declaration of function ‘iounmap’ [-Werror=implicit-function-declaration]
  iounmap(base);

When selecting MFD_SYSCON, depend on HAS_IOMEM to avoid unmet direct
dependencies.

Reported-by: kbuild test robot <lkp@intel.com>
Fixes: c89c0114955a ("mfd: syscon: Set regmap max_register in of_syscon_register")
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
---
 drivers/mfd/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index aa21dc55eb15..2e5b1e525a1d 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -1034,6 +1034,7 @@ config MFD_SUN6I_PRCM
 
 config MFD_SYSCON
 	bool "System Controller Register R/W Based on Regmap"
+	depends on HAS_IOMEM
 	select REGMAP_MMIO
 	help
 	  Select this option to enable accessing system control registers
-- 
2.5.0

WARNING: multiple messages have this Message-ID (diff)
From: k.kozlowski@samsung.com (Krzysztof Kozlowski)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC 15/15] mfd: syscon: Fix build of missing ioremap on UM
Date: Thu, 03 Mar 2016 17:03:41 +0900	[thread overview]
Message-ID: <1456992221-26712-16-git-send-email-k.kozlowski@samsung.com> (raw)
In-Reply-To: <1456992221-26712-1-git-send-email-k.kozlowski@samsung.com>

Since commit c89c0114955a ("mfd: syscon: Set regmap max_register in
of_syscon_register") the syscon uses ioremap so it fails on COMPILE_TEST
without HAS_IOMEM:

drivers/mfd/syscon.c: In function ?of_syscon_register?:
drivers/mfd/syscon.c:67:9: error: implicit declaration of function ?ioremap? [-Werror=implicit-function-declaration]
  base = ioremap(res.start, resource_size(&res));
         ^
drivers/mfd/syscon.c:67:7: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
  base = ioremap(res.start, resource_size(&res));
       ^
drivers/mfd/syscon.c:109:2: error: implicit declaration of function ?iounmap? [-Werror=implicit-function-declaration]
  iounmap(base);

When selecting MFD_SYSCON, depend on HAS_IOMEM to avoid unmet direct
dependencies.

Reported-by: kbuild test robot <lkp@intel.com>
Fixes: c89c0114955a ("mfd: syscon: Set regmap max_register in of_syscon_register")
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
---
 drivers/mfd/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index aa21dc55eb15..2e5b1e525a1d 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -1034,6 +1034,7 @@ config MFD_SUN6I_PRCM
 
 config MFD_SYSCON
 	bool "System Controller Register R/W Based on Regmap"
+	depends on HAS_IOMEM
 	select REGMAP_MMIO
 	help
 	  Select this option to enable accessing system control registers
-- 
2.5.0

  parent reply	other threads:[~2016-03-03  8:06 UTC|newest]

Thread overview: 250+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-03  8:03 [RFC 00/15] tree-wide: mfd: syscon: Fix unmet ioremap dependency Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 01/15] clocksource: atmel: Add missing MFD_SYSCON dependency on HAS_IOMEM Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 10:52   ` Arnd Bergmann
2016-03-03 10:52     ` Arnd Bergmann
2016-03-03 10:52     ` Arnd Bergmann
2016-03-03 10:52     ` [rtc-linux] " Arnd Bergmann
2016-03-03 10:52     ` Arnd Bergmann
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 02/15] dmaengine: nxp: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 10:52   ` Arnd Bergmann
2016-03-03 10:52     ` Arnd Bergmann
2016-03-03 10:52     ` Arnd Bergmann
2016-03-03 10:52     ` [rtc-linux] " Arnd Bergmann
2016-03-03 10:52     ` Arnd Bergmann
2016-03-03  8:03 ` [RFC 03/15] hwspinlock: qcom: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 10:53   ` Arnd Bergmann
2016-03-03 10:53     ` Arnd Bergmann
2016-03-03 10:53     ` Arnd Bergmann
2016-03-03 10:53     ` [rtc-linux] " Arnd Bergmann
2016-03-03 10:53     ` Arnd Bergmann
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 04/15] irqchip: st: " Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 10:53   ` Arnd Bergmann
2016-03-03 10:53     ` Arnd Bergmann
2016-03-03 10:53     ` Arnd Bergmann
2016-03-03 10:53     ` [rtc-linux] " Arnd Bergmann
2016-03-03 10:53     ` Arnd Bergmann
2016-03-03 12:00     ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 12:00       ` Krzysztof Kozlowski
2016-03-03 12:00       ` Krzysztof Kozlowski
2016-03-03 12:00       ` Krzysztof Kozlowski
2016-03-03 12:00       ` Krzysztof Kozlowski
2016-03-03 12:28       ` Arnd Bergmann
2016-03-03 12:28         ` Arnd Bergmann
2016-03-03 12:28         ` Arnd Bergmann
2016-03-03 12:28         ` Arnd Bergmann
2016-03-03 12:28         ` Arnd Bergmann
2016-03-03 12:33         ` Krzysztof Kozłowski
2016-03-03 12:33           ` Krzysztof Kozłowski
2016-03-03 12:33           ` Krzysztof Kozłowski
2016-03-03 12:33           ` Krzysztof Kozłowski
2016-03-03 12:33           ` Krzysztof Kozłowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 05/15] phy: hi6220: " Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 10:54   ` Arnd Bergmann
2016-03-03 10:54     ` Arnd Bergmann
2016-03-03 10:54     ` Arnd Bergmann
2016-03-03 10:54     ` [rtc-linux] " Arnd Bergmann
2016-03-03 10:54     ` Arnd Bergmann
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 06/15] pinctrl: rockchip: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03 12:44   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 12:44     ` Krzysztof Kozlowski
2016-03-03 12:44     ` Krzysztof Kozlowski
2016-03-03 12:44     ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 07/15] pinctrl: mvebu: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03 12:43   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 12:43     ` Krzysztof Kozlowski
2016-03-03 12:43     ` Krzysztof Kozlowski
2016-03-03 12:43     ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 08/15] rtc: at91sam9: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 10:55   ` Arnd Bergmann
2016-03-03 10:55     ` Arnd Bergmann
2016-03-03 10:55     ` Arnd Bergmann
2016-03-03 10:55     ` [rtc-linux] " Arnd Bergmann
2016-03-03 10:55     ` Arnd Bergmann
2016-03-03 12:27     ` Geert Uytterhoeven
2016-03-03 12:27       ` Geert Uytterhoeven
2016-03-03 12:27       ` Geert Uytterhoeven
2016-03-03 12:27       ` Geert Uytterhoeven
2016-03-03 12:27       ` [rtc-linux] " Geert Uytterhoeven
2016-03-03 12:27       ` Geert Uytterhoeven
2016-03-03 12:58       ` Arnd Bergmann
2016-03-03 12:58         ` Arnd Bergmann
2016-03-03 12:58         ` Arnd Bergmann
2016-03-03 12:58         ` Arnd Bergmann
2016-03-03 12:58         ` [rtc-linux] " Arnd Bergmann
2016-03-03 12:58         ` Arnd Bergmann
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 09/15] media: platform: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 10:57   ` Arnd Bergmann
2016-03-03 10:57     ` Arnd Bergmann
2016-03-03 10:57     ` Arnd Bergmann
2016-03-03 10:57     ` [rtc-linux] " Arnd Bergmann
2016-03-03 10:57     ` Arnd Bergmann
2016-03-03 12:28     ` Geert Uytterhoeven
2016-03-03 12:28       ` Geert Uytterhoeven
2016-03-03 12:28       ` Geert Uytterhoeven
2016-03-03 12:28       ` Geert Uytterhoeven
2016-03-03 12:28       ` [rtc-linux] " Geert Uytterhoeven
2016-03-03 12:28       ` Geert Uytterhoeven
2016-03-03 12:40     ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 12:40       ` Krzysztof Kozlowski
2016-03-03 12:40       ` Krzysztof Kozlowski
2016-03-03 12:40       ` Krzysztof Kozlowski
2016-03-03 12:40       ` Krzysztof Kozlowski
2016-03-03 13:05       ` Arnd Bergmann
2016-03-03 13:05         ` Arnd Bergmann
2016-03-03 13:05         ` Arnd Bergmann
2016-03-03 13:05         ` Arnd Bergmann
2016-03-03 13:05         ` Arnd Bergmann
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 10/15] net: ethernet: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 10:59   ` Arnd Bergmann
2016-03-03 10:59     ` Arnd Bergmann
2016-03-03 10:59     ` Arnd Bergmann
2016-03-03 10:59     ` [rtc-linux] " Arnd Bergmann
2016-03-03 10:59     ` Arnd Bergmann
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 11/15] power: reset: keystone: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 11:00   ` Arnd Bergmann
2016-03-03 11:00     ` Arnd Bergmann
2016-03-03 11:00     ` Arnd Bergmann
2016-03-03 11:00     ` [rtc-linux] " Arnd Bergmann
2016-03-03 11:00     ` Arnd Bergmann
2016-03-03 12:33     ` Sebastian Reichel
2016-03-03 12:33       ` Sebastian Reichel
2016-03-03 12:33       ` Sebastian Reichel
2016-03-03 12:33       ` [rtc-linux] " Sebastian Reichel
2016-03-03 12:33       ` Sebastian Reichel
2016-03-03 12:35       ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 12:35         ` Krzysztof Kozlowski
2016-03-03 12:35         ` Krzysztof Kozlowski
2016-03-03 12:35         ` Krzysztof Kozlowski
2016-03-03 12:35         ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 12/15] soc: qcom: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 12:43   ` Krzysztof Kozlowski
2016-03-03 12:43     ` Krzysztof Kozlowski
2016-03-03 12:43     ` Krzysztof Kozlowski
2016-03-03 12:43     ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 13/15] staging: media: omap4iss: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 12:42   ` Krzysztof Kozlowski
2016-03-03 12:42     ` Krzysztof Kozlowski
2016-03-03 12:42     ` Krzysztof Kozlowski
2016-03-03 12:42     ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` [RFC 14/15] usb: xhci: mtk: " Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 11:01   ` Arnd Bergmann
2016-03-03 11:01     ` Arnd Bergmann
2016-03-03 11:01     ` Arnd Bergmann
2016-03-03 11:01     ` [rtc-linux] " Arnd Bergmann
2016-03-03 11:01     ` Arnd Bergmann
2016-03-03  8:03 ` Krzysztof Kozlowski [this message]
2016-03-03  8:03   ` [RFC 15/15] mfd: syscon: Fix build of missing ioremap on UM Krzysztof Kozlowski
2016-03-03  8:03   ` Krzysztof Kozlowski
2016-03-03  8:03   ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 10:50   ` Arnd Bergmann
2016-03-03 10:50     ` Arnd Bergmann
2016-03-03 10:50     ` [rtc-linux] " Arnd Bergmann
2016-03-03 10:50     ` Arnd Bergmann
2016-03-03 12:24     ` [rtc-linux] " Krzysztof Kozlowski
2016-03-03 12:24       ` Krzysztof Kozlowski
2016-03-03 12:24       ` Krzysztof Kozlowski
2016-03-03 12:24       ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski
2016-03-03  8:03 ` Krzysztof Kozlowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1456992221-26712-16-git-send-email-k.kozlowski@samsung.com \
    --to=k.kozlowski@samsung.com \
    --cc=a.zummo@towertech.it \
    --cc=alexandre.belloni@free-electrons.com \
    --cc=andy.gross@linaro.org \
    --cc=dan.j.williams@intel.com \
    --cc=daniel.lezcano@linaro.org \
    --cc=david.brown@linaro.org \
    --cc=dbaryshkov@gmail.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=dmaengine@vger.kernel.org \
    --cc=dwmw2@infradead.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jason@lakedaemon.net \
    --cc=kishon@ti.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=lee.jones@linaro.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux-soc@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=marc.zyngier@arm.com \
    --cc=mchehab@osg.samsung.com \
    --cc=netdev@vger.kernel.org \
    --cc=peppe.cavallaro@st.com \
    --cc=rtc-linux@googlegroups.com \
    --cc=sre@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=vinod.koul@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.