lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <50C0E0E8.3020809@mvista.com> Date: Thu, 06 Dec 2012 21:16:08 +0300 From: Sergei Shtylyov <sshtylyov@...sta.com> To: Wenyou Yang <wenyou.yang@...el.com> CC: linux-arm-kernel@...ts.infradead.org, linux-watchdog@...r.kernel.org, JM.Lin@...el.com, nicolas.ferre@...el.com, linux-kernel@...r.kernel.org, wim@...ana.be, plagnioj@...osoft.com Subject: Re: [v2 PATCH 6/8] watchdog/at91sam9_wdt: Use module_platform_driver() Hello. On 12/05/2012 04:34 AM, Wenyou Yang wrote: > Using module_platform_driver() replaces module_init() and module_exit() > and makes the code simpler. > Signed-off-by: Wenyou Yang <wenyou.yang@...el.com> > Cc: wim@...ana.be > Cc: linux-watchdog@...r.kernel.org > Cc: linux-kernel@...r.kernel.org > --- > drivers/watchdog/at91sam9_wdt.c | 14 ++------------ > 1 file changed, 2 insertions(+), 12 deletions(-) > > diff --git a/drivers/watchdog/at91sam9_wdt.c b/drivers/watchdog/at91sam9_wdt.c > index 5afd3fb..a7c0881 100644 > --- a/drivers/watchdog/at91sam9_wdt.c > +++ b/drivers/watchdog/at91sam9_wdt.c > @@ -278,6 +278,7 @@ MODULE_DEVICE_TABLE(of, at91_wdt_dt_ids); > #endif > > static struct platform_driver at91wdt_driver = { > + .probe = at91wdt_probe, You also need to remove '__init' annotation from that function since the driver becomes hot-plug aware now. WBR, Sergei -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists