diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2008-02-06 20:23:12 +0300 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2008-02-06 20:23:12 +0300 |
commit | 911a3175997000c1fcddb2013aaa5fbbee79f0f0 (patch) | |
tree | 8c858443b2dc91296da3f7857979f7a2b0dca1cb /drivers/serial/uartlite.c | |
parent | 99e139126ab2e84be67969650f92eb37c12ab5cd (diff) | |
download | linux-911a3175997000c1fcddb2013aaa5fbbee79f0f0.tar.xz |
[POWERPC] Fix incorrectly tagged __devinitdata structures
Fix compile errors in the xilinxfb, xsysace and uartlite drivers used
by the Xilinx Virtex platform
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'drivers/serial/uartlite.c')
-rw-r--r-- | drivers/serial/uartlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/uartlite.c b/drivers/serial/uartlite.c index 80943409edb0..c54a5ad992b1 100644 --- a/drivers/serial/uartlite.c +++ b/drivers/serial/uartlite.c @@ -618,7 +618,7 @@ static int __devexit ulite_of_remove(struct of_device *op) } /* Match table for of_platform binding */ -static struct of_device_id __devinit ulite_of_match[] = { +static struct of_device_id ulite_of_match[] __devinitdata = { { .type = "serial", .compatible = "xilinx,uartlite", }, {}, }; |