]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
watchdog: remove use of __devinitdata
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:24:05 +0000 (13:24 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Nov 2012 20:00:24 +0000 (12:00 -0800)
CONFIG_HOTPLUG is going away as an option so __devinitdata is no
longer needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Wim Van Sebroeck <wim@iguana.be>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/watchdog/mixcomwd.c
drivers/watchdog/of_xilinx_wdt.c
drivers/watchdog/orion_wdt.c

index 37e4b52dbce982c6bb64a39601b7cfd7e164d82c..97d62ee503418822a1e649fa1b8e7059117aaf13 100644 (file)
@@ -73,7 +73,7 @@
 static struct {
        int ioport;
        int id;
-} mixcomwd_io_info[] __devinitdata = {
+} mixcomwd_io_info[] = {
        /* The Mixcom cards */
        {0x0d90, MIXCOM_ID},
        {0x0e90, MIXCOM_ID},
index fd3e5f6ee55c431d559941cf336e2a69cf91f2ae..3ddc4e93906fe3a081703a5f5a420cab670ebd99 100644 (file)
@@ -393,7 +393,7 @@ static int __devexit xwdt_remove(struct platform_device *dev)
 }
 
 /* Match table for of_platform binding */
-static struct of_device_id __devinitdata xwdt_of_match[] = {
+static struct of_device_id xwdt_of_match[] = {
        { .compatible = "xlnx,xps-timebase-wdt-1.01.a", },
        {},
 };
index e6b7bd2117c63f4bddc4b8ded4e2a14b1028d281..f722635f3eccf3f221614a64982edd1601a89842 100644 (file)
@@ -193,7 +193,7 @@ static void orion_wdt_shutdown(struct platform_device *pdev)
        orion_wdt_stop(&orion_wdt);
 }
 
-static const struct of_device_id orion_wdt_of_match_table[] __devinitdata = {
+static const struct of_device_id orion_wdt_of_match_table[] = {
        { .compatible = "marvell,orion-wdt", },
        {},
 };