Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1262996 > unrolled thread
| Started by | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| First post | 2015-11-05 09:20 +0100 |
| Last post | 2015-11-11 19:00 +0100 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-11-05 09:20 +0100
Re: [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile Philipp Zabel <p.zabel@pengutronix.de> - 2015-11-05 10:40 +0100
Re: [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-11-11 03:00 +0100
Re: [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile Philipp Zabel <p.zabel@pengutronix.de> - 2015-11-11 19:00 +0100
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Date | 2015-11-05 09:20 +0100 |
| Subject | [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile |
| Message-ID | <qrnW2-44c-13@gated-at.bofh.it> |
The directory drivers/reset/ is guarded by CONFIG_RESET_CONTROLLER in driver/Makefile. CONFIG_RESET_CONTROLLER is boolean, so it always evaluates to 'y' in drivers/reset/Makefile. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- drivers/reset/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/reset/Makefile b/drivers/reset/Makefile index 85d5904..f191cf33 100644 --- a/drivers/reset/Makefile +++ b/drivers/reset/Makefile @@ -1,4 +1,4 @@ -obj-$(CONFIG_RESET_CONTROLLER) += core.o +obj-y += core.o obj-$(CONFIG_ARCH_LPC18XX) += reset-lpc18xx.o obj-$(CONFIG_ARCH_SOCFPGA) += reset-socfpga.o obj-$(CONFIG_ARCH_BERLIN) += reset-berlin.o -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Philipp Zabel <p.zabel@pengutronix.de> |
|---|---|
| Date | 2015-11-05 10:40 +0100 |
| Subject | Re: [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile |
| Message-ID | <qrpbs-4Mx-21@gated-at.bofh.it> |
| In reply to | #1262996 |
Am Donnerstag, den 05.11.2015, 17:17 +0900 schrieb Masahiro Yamada: > The directory drivers/reset/ is guarded by CONFIG_RESET_CONTROLLER > in driver/Makefile. > > CONFIG_RESET_CONTROLLER is boolean, so it always evaluates to 'y' > in drivers/reset/Makefile. > > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Applied, thanks. regards Philipp -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Date | 2015-11-11 03:00 +0100 |
| Message-ID | <qtsRz-4Cy-1@gated-at.bofh.it> |
| In reply to | #1263046 |
Hi Philipp, 2015-11-05 18:33 GMT+09:00 Philipp Zabel <p.zabel@pengutronix.de>: > Am Donnerstag, den 05.11.2015, 17:17 +0900 schrieb Masahiro Yamada: >> The directory drivers/reset/ is guarded by CONFIG_RESET_CONTROLLER >> in driver/Makefile. >> >> CONFIG_RESET_CONTROLLER is boolean, so it always evaluates to 'y' >> in drivers/reset/Makefile. >> >> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> > > Applied, thanks. > Thanks. Where did you apply it, btw? I have not seen it in linux-next yet. The following entry does not provide the git tree information. RESET CONTROLLER FRAMEWORK M: Philipp Zabel <p.zabel@pengutronix.de> S: Maintained F: drivers/reset/ F: Documentation/devicetree/bindings/reset/ F: include/dt-bindings/reset/ F: include/linux/reset.h F: include/linux/reset-controller.h I am a newbie to this framework, so I do not know where patches are applied and how they go to the upstream. -- Best Regards Masahiro Yamada -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Philipp Zabel <p.zabel@pengutronix.de> |
|---|---|
| Date | 2015-11-11 19:00 +0100 |
| Subject | Re: [PATCH] reset: remove redundant $(CONFIG_RESET_CONTROLLER) from Makefile |
| Message-ID | <qtHQD-5Vc-35@gated-at.bofh.it> |
| In reply to | #1266917 |
Am Mittwoch, den 11.11.2015, 10:52 +0900 schrieb Masahiro Yamada: > Hi Philipp, > > 2015-11-05 18:33 GMT+09:00 Philipp Zabel <p.zabel@pengutronix.de>: > > Am Donnerstag, den 05.11.2015, 17:17 +0900 schrieb Masahiro Yamada: > >> The directory drivers/reset/ is guarded by CONFIG_RESET_CONTROLLER > >> in driver/Makefile. > >> > >> CONFIG_RESET_CONTROLLER is boolean, so it always evaluates to 'y' > >> in drivers/reset/Makefile. > >> > >> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> > > > > Applied, thanks. > > > > Thanks. > > Where did you apply it, btw? > I have not seen it in linux-next yet. git://git.pengutronix.de/git/pza/linux.git reset/next That branch is not stable. I'll rebase it onto v4.4-rc1 and send a pull request to the arm-soc maintainers next week. regards Philipp -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web