From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Gortmaker Subject: Re: [PATCH v2 05/10] power/reset: Add reset driver support for nuc900 Date: Sun, 10 Jul 2016 22:58:04 -0400 Message-ID: <20160711025804.GG30853@windriver.com> References: <1468135649-19980-1-git-send-email-vw@iommu.org> <1468135649-19980-6-git-send-email-vw@iommu.org> <578304CB.8050604@iommu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Content-Disposition: inline In-Reply-To: <578304CB.8050604@iommu.org> Sender: linux-clk-owner@vger.kernel.org To: Wan Zongshun Cc: devicetree@vger.kernel.org, Jason Cooper , Arnd Bergmann , Daniel Lezcano , Russell King , LKML , p.zabel@pengutronix.de, Thomas Gleixner , Wan Zongshun , linux-clk@vger.kernel.org, "linux-arm-kernel@lists.infradead.org" List-Id: devicetree@vger.kernel.org [Re: [PATCH v2 05/10] power/reset: Add reset driver support for nuc900]= On 11/07/2016 (Mon 10:30) Wan Zongshun wrote: >=20 >=20 > On 2016=E5=B9=B407=E6=9C=8811=E6=97=A5 05:56, Paul Gortmaker wrote: > >On Sun, Jul 10, 2016 at 3:27 AM, Wan Zongshun wrote > >>This driver is to add reset support for nuc900 series, > >>currently, it only supports nuc970 SoC reset. > >> > >>Signed-off-by: Wan Zongshun > >>--- > >> drivers/power/reset/Kconfig | 7 +++ > >> drivers/power/reset/Makefile | 1 + > >> drivers/power/reset/nuc900-reset.c | 93 +++++++++++++++++++++++++= +++++++++++++ > >> 3 files changed, 101 insertions(+) > >> create mode 100644 drivers/power/reset/nuc900-reset.c > >> > >>diff --git a/drivers/power/reset/Kconfig b/drivers/power/reset/Kcon= fig > >>index 9bb2622..8c84892 100644 > >>--- a/drivers/power/reset/Kconfig > >>+++ b/drivers/power/reset/Kconfig > >>@@ -94,6 +94,13 @@ config POWER_RESET_MSM > >> help > >> Power off and restart support for Qualcomm boards. > >> > >>+config POWER_RESET_NUC900 > >>+ bool "Nuc900 restart driver" > > > >If this driver is bool and not tristate, then please remove all refe= rences > >to MODULE_ and then the module.h include as well. >=20 > I will remove the following codes in my reset.c driver. >=20 > MODULE_DEVICE_TABLE(of, of_nuc900_reset_match); > #include Thanks -- it is not a specific criticism of your driver, but just a mistake that we have consistently copied from one driver to the next, and I hope we can stop doing that with the right reviews. P. -- >=20 >=20 > > > >Thanks, > >Paul. > >-- > > > >>+ depends on ARCH_W90X900 > >>+ help > >>+ Power off and restart support for Nuvoton NUC900 family o= f > >>+ reference boards. > >>+ > >> config POWER_RESET_LTC2952 > >> bool "LTC2952 PowerPath power-off driver" > >> depends on OF_GPIO > >>diff --git a/drivers/power/reset/Makefile b/drivers/power/reset/Mak= efile > >>index ab7aa86..d4df889 100644 > >>--- a/drivers/power/reset/Makefile > >>+++ b/drivers/power/reset/Makefile > >>@@ -9,6 +9,7 @@ obj-$(CONFIG_POWER_RESET_GPIO_RESTART) +=3D gpio-re= start.o > >> obj-$(CONFIG_POWER_RESET_HISI) +=3D hisi-reboot.o > >> obj-$(CONFIG_POWER_RESET_IMX) +=3D imx-snvs-poweroff.o > >> obj-$(CONFIG_POWER_RESET_MSM) +=3D msm-poweroff.o > >>+obj-$(CONFIG_POWER_RESET_NUC900) +=3D nuc900-reset.o > >> obj-$(CONFIG_POWER_RESET_LTC2952) +=3D ltc2952-poweroff.o > >> obj-$(CONFIG_POWER_RESET_QNAP) +=3D qnap-poweroff.o > >> obj-$(CONFIG_POWER_RESET_RESTART) +=3D restart-poweroff.o > >>diff --git a/drivers/power/reset/nuc900-reset.c b/drivers/power/res= et/nuc900-reset.c > >>new file mode 100644 > >>index 0000000..49986b7 > >>--- /dev/null > >>+++ b/drivers/power/reset/nuc900-reset.c > >>@@ -0,0 +1,93 @@ > >>+/* > >>+ * Copyright 2016 Wan Zongshun > >>+ * > >>+ * The code contained herein is licensed under the GNU General Pub= lic > >>+ * License. You may obtain a copy of the GNU General Public Licens= e > >>+ * Version 2 or later at the following locations: > >>+ * > >>+ * http://www.opensource.org/licenses/gpl-license.html > >>+ * http://www.gnu.org/copyleft/gpl.html > >>+ */ > >>+#include > >>+#include > >>+#include > >>+#include > >>+#include > >>+#include > >>+#include > >>+#include > >>+#include > >>+#include > >>+#include > >> > > > >[...] > > > >_______________________________________________ > >linux-arm-kernel mailing list > >linux-arm-kernel@lists.infradead.org > >http://lists.infradead.org/mailman/listinfo/linux-arm-kernel > > > >