diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 19:24:32 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-22 00:25:06 +0100 |
commit | de88b34042752c03771b779d1d985060909ab44a (patch) | |
tree | 3393b75581f122f9dfaba5dc540238c3d4a11090 /drivers/tty/serial/xilinx_uartps.c | |
parent | tty: remove use of __devinitdata (diff) | |
download | linux-de88b34042752c03771b779d1d985060909ab44a.tar.xz linux-de88b34042752c03771b779d1d985060909ab44a.zip |
tty: remove use of __devinitdata
CONFIG_HOTPLUG is going away as an option so __devinitdata is no
longer needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Alan Cox <alan@linux.intel.com>
Cc: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/xilinx_uartps.c')
-rw-r--r-- | drivers/tty/serial/xilinx_uartps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/xilinx_uartps.c b/drivers/tty/serial/xilinx_uartps.c index a1cd2df51c9e..61fa71433a0e 100644 --- a/drivers/tty/serial/xilinx_uartps.c +++ b/drivers/tty/serial/xilinx_uartps.c @@ -1040,7 +1040,7 @@ static int xuartps_resume(struct platform_device *pdev) } /* Match table for of_platform binding */ -static struct of_device_id xuartps_of_match[] __devinitdata = { +static struct of_device_id xuartps_of_match[] = { { .compatible = "xlnx,xuartps", }, {} }; |