On Tue, Oct 2, 2012 at 10:07 PM, Andrew Lunn <[email protected]> wrote: >> Date: Tue, 2 Oct 2012 18:01:00 +0200 >> From: Fabio Porcedda <[email protected]> >> To: Wim Van Sebroeck <[email protected]>, [email protected], >> [email protected], Nicolas Ferre >> <[email protected]>, Jean-Christophe PLAGNIOL-VILLARD >> <[email protected]>, Andrew Victor <[email protected]> >> Cc: [email protected] >> Subject: [PATCH v7 1/3] watchdog: at91sam9_wdt: add device tree >> support >> Message-ID: >> <[email protected]> >> >> Tested on an at91sam9260 board (evk-pro3) >> >> Signed-off-by: Fabio Porcedda <[email protected]> >> +++ b/drivers/watchdog/at91sam9_wdt.c >> @@ -32,6 +32,7 @@ >> #include <linux/timer.h> >> #include <linux/bitops.h> >> #include <linux/uaccess.h> >> +#include <linux/of.h> >> >> #include "at91sam9_wdt.h" >> >> > @@ -302,11 +303,21 @@ static int __exit at91wdt_remove(struct >> > platform_device *pdev) >> return res; >> } >> >> +#if defined(CONFIG_OF) >> +static const struct of_device_id at91_wdt_dt_ids[] = { >> + { .compatible = "atmel,at91sam9260-wdt" }, >> + { /* sentinel */ } >> +}; > > Hi Fabio > > You are missing __devinitdata.
Thank you, Andrew. I'll add __initconst, because it's const and use platform_driver_probe. Best regards -- Fabio Porcedda _______________________________________________ devicetree-discuss mailing list [email protected] https://lists.ozlabs.org/listinfo/devicetree-discuss
