diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2008-02-06 10:23:12 -0700 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2008-02-06 10:23:12 -0700 |
commit | 911a3175997000c1fcddb2013aaa5fbbee79f0f0 (patch) | |
tree | 8c858443b2dc91296da3f7857979f7a2b0dca1cb /drivers/serial | |
parent | 99e139126ab2e84be67969650f92eb37c12ab5cd (diff) | |
download | op-kernel-dev-911a3175997000c1fcddb2013aaa5fbbee79f0f0.zip op-kernel-dev-911a3175997000c1fcddb2013aaa5fbbee79f0f0.tar.gz |
[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')
-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 8094340..c54a5ad 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", }, {}, }; |