diff options
| author | David S. Miller <davem@davemloft.net> | 2008-08-31 04:23:17 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2008-08-31 04:23:17 -0400 |
| commit | fd098316ef533e8441576f020ead4beab93154ce (patch) | |
| tree | 6188bbbf2357585dbeeac9d055ef2e771b78bac8 /drivers | |
| parent | 933b2a1d8d458d6fe12b5efd63a0432852c44d6d (diff) | |
sparc: Annotate of_device_id arrays with const or __initdata.
As suggested by Stephen Rothwell.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
34 files changed, 35 insertions, 35 deletions
diff --git a/drivers/atm/fore200e.c b/drivers/atm/fore200e.c index c2fa9fdc5d32..937c9c0ef4c9 100644 --- a/drivers/atm/fore200e.c +++ b/drivers/atm/fore200e.c | |||
| @@ -2685,7 +2685,7 @@ static int __devexit fore200e_sba_remove(struct of_device *op) | |||
| 2685 | return 0; | 2685 | return 0; |
| 2686 | } | 2686 | } |
| 2687 | 2687 | ||
| 2688 | static struct of_device_id fore200e_sba_match[] = { | 2688 | static const struct of_device_id fore200e_sba_match[] = { |
| 2689 | { | 2689 | { |
| 2690 | .name = SBA200E_PROM_NAME, | 2690 | .name = SBA200E_PROM_NAME, |
| 2691 | .data = (void *) &fore200e_bus[1], | 2691 | .data = (void *) &fore200e_bus[1], |
diff --git a/drivers/char/hw_random/n2-drv.c b/drivers/char/hw_random/n2-drv.c index 5220f541df25..8859aeac2d25 100644 --- a/drivers/char/hw_random/n2-drv.c +++ b/drivers/char/hw_random/n2-drv.c | |||
| @@ -736,7 +736,7 @@ static int __devexit n2rng_remove(struct of_device *op) | |||
| 736 | return 0; | 736 | return 0; |
| 737 | } | 737 | } |
| 738 | 738 | ||
| 739 | static struct of_device_id n2rng_match[] = { | 739 | static const struct of_device_id n2rng_match[] = { |
| 740 | { | 740 | { |
| 741 | .name = "random-number-generator", | 741 | .name = "random-number-generator", |
| 742 | .compatible = "SUNW,n2-rng", | 742 | .compatible = "SUNW,n2-rng", |
diff --git a/drivers/hwmon/ultra45_env.c b/drivers/hwmon/ultra45_env.c index 9aec95cbf7e9..68e90abeba96 100644 --- a/drivers/hwmon/ultra45_env.c +++ b/drivers/hwmon/ultra45_env.c | |||
| @@ -290,7 +290,7 @@ static int __devexit env_remove(struct of_device *op) | |||
| 290 | return 0; | 290 | return 0; |
| 291 | } | 291 | } |
| 292 | 292 | ||
| 293 | static struct of_device_id env_match[] = { | 293 | static const struct of_device_id env_match[] = { |
| 294 | { | 294 | { |
| 295 | .name = "env-monitor", | 295 | .name = "env-monitor", |
| 296 | .compatible = "SUNW,ebus-pic16f747-env", | 296 | .compatible = "SUNW,ebus-pic16f747-env", |
diff --git a/drivers/input/misc/sparcspkr.c b/drivers/input/misc/sparcspkr.c index d8765cc93d27..c4f42311fdec 100644 --- a/drivers/input/misc/sparcspkr.c +++ b/drivers/input/misc/sparcspkr.c | |||
| @@ -249,7 +249,7 @@ static int bbc_remove(struct of_device *op) | |||
| 249 | return 0; | 249 | return 0; |
| 250 | } | 250 | } |
| 251 | 251 | ||
| 252 | static struct of_device_id bbc_beep_match[] = { | 252 | static const struct of_device_id bbc_beep_match[] = { |
| 253 | { | 253 | { |
| 254 | .name = "beep", | 254 | .name = "beep", |
| 255 | .compatible = "SUNW,bbc-beep", | 255 | .compatible = "SUNW,bbc-beep", |
| @@ -328,7 +328,7 @@ static int grover_remove(struct of_device *op) | |||
| 328 | return 0; | 328 | return 0; |
| 329 | } | 329 | } |
| 330 | 330 | ||
| 331 | static struct of_device_id grover_beep_match[] = { | 331 | static const struct of_device_id grover_beep_match[] = { |
| 332 | { | 332 | { |
| 333 | .name = "beep", | 333 | .name = "beep", |
| 334 | .compatible = "SUNW,smbus-beep", | 334 | .compatible = "SUNW,smbus-beep", |
diff --git a/drivers/input/serio/i8042-sparcio.h b/drivers/input/serio/i8042-sparcio.h index 692a79ec2a22..5071af2c0604 100644 --- a/drivers/input/serio/i8042-sparcio.h +++ b/drivers/input/serio/i8042-sparcio.h | |||
| @@ -87,7 +87,7 @@ static int __devexit sparc_i8042_remove(struct of_device *op) | |||
| 87 | return 0; | 87 | return 0; |
| 88 | } | 88 | } |
| 89 | 89 | ||
| 90 | static struct of_device_id sparc_i8042_match[] = { | 90 | static const struct of_device_id sparc_i8042_match[] = { |
| 91 | { | 91 | { |
| 92 | .name = "8042", | 92 | .name = "8042", |
| 93 | }, | 93 | }, |
diff --git a/drivers/mtd/maps/sun_uflash.c b/drivers/mtd/maps/sun_uflash.c index e931f1df0af1..fd7a1017399a 100644 --- a/drivers/mtd/maps/sun_uflash.c +++ b/drivers/mtd/maps/sun_uflash.c | |||
| @@ -138,7 +138,7 @@ static int __devexit uflash_remove(struct of_device *op) | |||
| 138 | return 0; | 138 | return 0; |
| 139 | } | 139 | } |
| 140 | 140 | ||
| 141 | static struct of_device_id uflash_match[] = { | 141 | static const struct of_device_id uflash_match[] = { |
| 142 | { | 142 | { |
| 143 | .name = UFLASH_OBPNAME, | 143 | .name = UFLASH_OBPNAME, |
| 144 | }, | 144 | }, |
diff --git a/drivers/net/myri_sbus.c b/drivers/net/myri_sbus.c index 03867b10f37e..979d778b133b 100644 --- a/drivers/net/myri_sbus.c +++ b/drivers/net/myri_sbus.c | |||
| @@ -1125,7 +1125,7 @@ static int __devexit myri_sbus_remove(struct of_device *op) | |||
| 1125 | return 0; | 1125 | return 0; |
| 1126 | } | 1126 | } |
| 1127 | 1127 | ||
| 1128 | static struct of_device_id myri_sbus_match[] = { | 1128 | static const struct of_device_id myri_sbus_match[] = { |
| 1129 | { | 1129 | { |
| 1130 | .name = "MYRICOM,mlanai", | 1130 | .name = "MYRICOM,mlanai", |
| 1131 | }, | 1131 | }, |
diff --git a/drivers/net/niu.c b/drivers/net/niu.c index e4765b713aba..016d9e08692d 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c | |||
| @@ -9074,7 +9074,7 @@ static int __devexit niu_of_remove(struct of_device *op) | |||
| 9074 | return 0; | 9074 | return 0; |
| 9075 | } | 9075 | } |
| 9076 | 9076 | ||
| 9077 | static struct of_device_id niu_match[] = { | 9077 | static const struct of_device_id niu_match[] = { |
| 9078 | { | 9078 | { |
| 9079 | .name = "network", | 9079 | .name = "network", |
| 9080 | .compatible = "SUNW,niusl", | 9080 | .compatible = "SUNW,niusl", |
diff --git a/drivers/net/sunbmac.c b/drivers/net/sunbmac.c index 7009a5e36c97..3f342b35a77f 100644 --- a/drivers/net/sunbmac.c +++ b/drivers/net/sunbmac.c | |||
| @@ -1281,7 +1281,7 @@ static int __devexit bigmac_sbus_remove(struct of_device *op) | |||
| 1281 | return 0; | 1281 | return 0; |
| 1282 | } | 1282 | } |
| 1283 | 1283 | ||
| 1284 | static struct of_device_id bigmac_sbus_match[] = { | 1284 | static const struct of_device_id bigmac_sbus_match[] = { |
| 1285 | { | 1285 | { |
| 1286 | .name = "be", | 1286 | .name = "be", |
| 1287 | }, | 1287 | }, |
diff --git a/drivers/net/sunhme.c b/drivers/net/sunhme.c index dc46e97ac122..f1ebeb5f65b2 100644 --- a/drivers/net/sunhme.c +++ b/drivers/net/sunhme.c | |||
| @@ -3252,7 +3252,7 @@ static int __devexit hme_sbus_remove(struct of_device *op) | |||
| 3252 | return 0; | 3252 | return 0; |
| 3253 | } | 3253 | } |
| 3254 | 3254 | ||
| 3255 | static struct of_device_id hme_sbus_match[] = { | 3255 | static const struct of_device_id hme_sbus_match[] = { |
| 3256 | { | 3256 | { |
| 3257 | .name = "SUNW,hme", | 3257 | .name = "SUNW,hme", |
| 3258 | }, | 3258 | }, |
diff --git a/drivers/net/sunlance.c b/drivers/net/sunlance.c index 292feb2154b4..30cdb81853b4 100644 --- a/drivers/net/sunlance.c +++ b/drivers/net/sunlance.c | |||
| @@ -1571,7 +1571,7 @@ static int __devexit sunlance_sbus_remove(struct of_device *op) | |||
| 1571 | return 0; | 1571 | return 0; |
| 1572 | } | 1572 | } |
| 1573 | 1573 | ||
| 1574 | static struct of_device_id sunlance_sbus_match[] = { | 1574 | static const struct of_device_id sunlance_sbus_match[] = { |
| 1575 | { | 1575 | { |
| 1576 | .name = "le", | 1576 | .name = "le", |
| 1577 | }, | 1577 | }, |
diff --git a/drivers/net/sunqe.c b/drivers/net/sunqe.c index 81604cac8e3e..f63644744ff9 100644 --- a/drivers/net/sunqe.c +++ b/drivers/net/sunqe.c | |||
| @@ -965,7 +965,7 @@ static int __devexit qec_sbus_remove(struct of_device *op) | |||
| 965 | return 0; | 965 | return 0; |
| 966 | } | 966 | } |
| 967 | 967 | ||
| 968 | static struct of_device_id qec_sbus_match[] = { | 968 | static const struct of_device_id qec_sbus_match[] = { |
| 969 | { | 969 | { |
| 970 | .name = "qe", | 970 | .name = "qe", |
| 971 | }, | 971 | }, |
diff --git a/drivers/parport/parport_sunbpp.c b/drivers/parport/parport_sunbpp.c index e4f00c6dfe09..065f229580d5 100644 --- a/drivers/parport/parport_sunbpp.c +++ b/drivers/parport/parport_sunbpp.c | |||
| @@ -372,7 +372,7 @@ static int __devexit bpp_remove(struct of_device *op) | |||
| 372 | return 0; | 372 | return 0; |
| 373 | } | 373 | } |
| 374 | 374 | ||
| 375 | static struct of_device_id bpp_match[] = { | 375 | static const struct of_device_id bpp_match[] = { |
| 376 | { | 376 | { |
| 377 | .name = "SUNW,bpp", | 377 | .name = "SUNW,bpp", |
| 378 | }, | 378 | }, |
diff --git a/drivers/sbus/char/bbc_i2c.c b/drivers/sbus/char/bbc_i2c.c index af7f4af6c5fb..f08e169ba1b5 100644 --- a/drivers/sbus/char/bbc_i2c.c +++ b/drivers/sbus/char/bbc_i2c.c | |||
| @@ -404,7 +404,7 @@ static int __devexit bbc_i2c_remove(struct of_device *op) | |||
| 404 | return 0; | 404 | return 0; |
| 405 | } | 405 | } |
| 406 | 406 | ||
| 407 | static struct of_device_id bbc_i2c_match[] = { | 407 | static const struct of_device_id bbc_i2c_match[] = { |
| 408 | { | 408 | { |
| 409 | .name = "i2c", | 409 | .name = "i2c", |
| 410 | .compatible = "SUNW,bbc-i2c", | 410 | .compatible = "SUNW,bbc-i2c", |
diff --git a/drivers/sbus/char/display7seg.c b/drivers/sbus/char/display7seg.c index 2f16d78e92d7..2550af4ae432 100644 --- a/drivers/sbus/char/display7seg.c +++ b/drivers/sbus/char/display7seg.c | |||
| @@ -256,7 +256,7 @@ static int __devexit d7s_remove(struct of_device *op) | |||
| 256 | return 0; | 256 | return 0; |
| 257 | } | 257 | } |
| 258 | 258 | ||
| 259 | static struct of_device_id d7s_match[] = { | 259 | static const struct of_device_id d7s_match[] = { |
| 260 | { | 260 | { |
| 261 | .name = "display7seg", | 261 | .name = "display7seg", |
| 262 | }, | 262 | }, |
diff --git a/drivers/sbus/char/envctrl.c b/drivers/sbus/char/envctrl.c index ea8c35cbffd3..58e583b61e60 100644 --- a/drivers/sbus/char/envctrl.c +++ b/drivers/sbus/char/envctrl.c | |||
| @@ -1120,7 +1120,7 @@ static int __devexit envctrl_remove(struct of_device *op) | |||
| 1120 | return 0; | 1120 | return 0; |
| 1121 | } | 1121 | } |
| 1122 | 1122 | ||
| 1123 | static struct of_device_id envctrl_match[] = { | 1123 | static const struct of_device_id envctrl_match[] = { |
| 1124 | { | 1124 | { |
| 1125 | .name = "i2c", | 1125 | .name = "i2c", |
| 1126 | .compatible = "i2cpcf,8584", | 1126 | .compatible = "i2cpcf,8584", |
diff --git a/drivers/sbus/char/flash.c b/drivers/sbus/char/flash.c index 715996f5c538..41083472ff4f 100644 --- a/drivers/sbus/char/flash.c +++ b/drivers/sbus/char/flash.c | |||
| @@ -199,7 +199,7 @@ static int __devexit flash_remove(struct of_device *op) | |||
| 199 | return 0; | 199 | return 0; |
| 200 | } | 200 | } |
| 201 | 201 | ||
| 202 | static struct of_device_id flash_match[] = { | 202 | static const struct of_device_id flash_match[] = { |
| 203 | { | 203 | { |
| 204 | .name = "flashprom", | 204 | .name = "flashprom", |
| 205 | }, | 205 | }, |
diff --git a/drivers/sbus/char/uctrl.c b/drivers/sbus/char/uctrl.c index 6cff9777bbc0..27993c37775d 100644 --- a/drivers/sbus/char/uctrl.c +++ b/drivers/sbus/char/uctrl.c | |||
| @@ -417,7 +417,7 @@ static int __devexit uctrl_remove(struct of_device *op) | |||
| 417 | return 0; | 417 | return 0; |
| 418 | } | 418 | } |
| 419 | 419 | ||
| 420 | static struct of_device_id uctrl_match[] = { | 420 | static const struct of_device_id uctrl_match[] = { |
| 421 | { | 421 | { |
| 422 | .name = "uctrl", | 422 | .name = "uctrl", |
| 423 | }, | 423 | }, |
diff --git a/drivers/scsi/qlogicpti.c b/drivers/scsi/qlogicpti.c index b6ce82d3de3d..42807671512b 100644 --- a/drivers/scsi/qlogicpti.c +++ b/drivers/scsi/qlogicpti.c | |||
| @@ -1415,7 +1415,7 @@ static int __devexit qpti_sbus_remove(struct of_device *op) | |||
| 1415 | return 0; | 1415 | return 0; |
| 1416 | } | 1416 | } |
| 1417 | 1417 | ||
| 1418 | static struct of_device_id qpti_match[] = { | 1418 | static const struct of_device_id qpti_match[] = { |
| 1419 | { | 1419 | { |
| 1420 | .name = "ptisp", | 1420 | .name = "ptisp", |
| 1421 | .data = &qpti_template, | 1421 | .data = &qpti_template, |
diff --git a/drivers/scsi/sun_esp.c b/drivers/scsi/sun_esp.c index 97316ca28a7a..3d73aad4bc82 100644 --- a/drivers/scsi/sun_esp.c +++ b/drivers/scsi/sun_esp.c | |||
| @@ -617,7 +617,7 @@ static int __devexit esp_sbus_remove(struct of_device *op) | |||
| 617 | return 0; | 617 | return 0; |
| 618 | } | 618 | } |
| 619 | 619 | ||
| 620 | static struct of_device_id esp_match[] = { | 620 | static const struct of_device_id esp_match[] = { |
| 621 | { | 621 | { |
| 622 | .name = "SUNW,esp", | 622 | .name = "SUNW,esp", |
| 623 | }, | 623 | }, |
diff --git a/drivers/serial/sunhv.c b/drivers/serial/sunhv.c index e41766d08035..a94a2ab4b571 100644 --- a/drivers/serial/sunhv.c +++ b/drivers/serial/sunhv.c | |||
| @@ -616,7 +616,7 @@ static int __devexit hv_remove(struct of_device *dev) | |||
| 616 | return 0; | 616 | return 0; |
| 617 | } | 617 | } |
| 618 | 618 | ||
| 619 | static struct of_device_id hv_match[] = { | 619 | static const struct of_device_id hv_match[] = { |
| 620 | { | 620 | { |
| 621 | .name = "console", | 621 | .name = "console", |
| 622 | .compatible = "qcn", | 622 | .compatible = "qcn", |
diff --git a/drivers/serial/sunsab.c b/drivers/serial/sunsab.c index 29b4458abf74..0355efe115d9 100644 --- a/drivers/serial/sunsab.c +++ b/drivers/serial/sunsab.c | |||
| @@ -1078,7 +1078,7 @@ static int __devexit sab_remove(struct of_device *op) | |||
| 1078 | return 0; | 1078 | return 0; |
| 1079 | } | 1079 | } |
| 1080 | 1080 | ||
| 1081 | static struct of_device_id sab_match[] = { | 1081 | static const struct of_device_id sab_match[] = { |
| 1082 | { | 1082 | { |
| 1083 | .name = "se", | 1083 | .name = "se", |
| 1084 | }, | 1084 | }, |
diff --git a/drivers/serial/sunsu.c b/drivers/serial/sunsu.c index a378464f9292..a4dc79b1d7ab 100644 --- a/drivers/serial/sunsu.c +++ b/drivers/serial/sunsu.c | |||
| @@ -1506,7 +1506,7 @@ static int __devexit su_remove(struct of_device *op) | |||
| 1506 | return 0; | 1506 | return 0; |
| 1507 | } | 1507 | } |
| 1508 | 1508 | ||
| 1509 | static struct of_device_id su_match[] = { | 1509 | static const struct of_device_id su_match[] = { |
| 1510 | { | 1510 | { |
| 1511 | .name = "su", | 1511 | .name = "su", |
| 1512 | }, | 1512 | }, |
diff --git a/drivers/serial/sunzilog.c b/drivers/serial/sunzilog.c index 3cb4c8aee13f..45a299f35617 100644 --- a/drivers/serial/sunzilog.c +++ b/drivers/serial/sunzilog.c | |||
| @@ -1480,7 +1480,7 @@ static int __devexit zs_remove(struct of_device *op) | |||
| 1480 | return 0; | 1480 | return 0; |
| 1481 | } | 1481 | } |
| 1482 | 1482 | ||
| 1483 | static struct of_device_id zs_match[] = { | 1483 | static const struct of_device_id zs_match[] = { |
| 1484 | { | 1484 | { |
| 1485 | .name = "zs", | 1485 | .name = "zs", |
| 1486 | }, | 1486 | }, |
diff --git a/drivers/video/bw2.c b/drivers/video/bw2.c index e721644bad74..1e35ba6f18e0 100644 --- a/drivers/video/bw2.c +++ b/drivers/video/bw2.c | |||
| @@ -372,7 +372,7 @@ static int __devexit bw2_remove(struct of_device *op) | |||
| 372 | return 0; | 372 | return 0; |
| 373 | } | 373 | } |
| 374 | 374 | ||
| 375 | static struct of_device_id bw2_match[] = { | 375 | static const struct of_device_id bw2_match[] = { |
| 376 | { | 376 | { |
| 377 | .name = "bwtwo", | 377 | .name = "bwtwo", |
| 378 | }, | 378 | }, |
diff --git a/drivers/video/cg14.c b/drivers/video/cg14.c index b17e74671779..a2d1882791a5 100644 --- a/drivers/video/cg14.c +++ b/drivers/video/cg14.c | |||
| @@ -589,7 +589,7 @@ static int __devexit cg14_remove(struct of_device *op) | |||
| 589 | return 0; | 589 | return 0; |
| 590 | } | 590 | } |
| 591 | 591 | ||
| 592 | static struct of_device_id cg14_match[] = { | 592 | static const struct of_device_id cg14_match[] = { |
| 593 | { | 593 | { |
| 594 | .name = "cgfourteen", | 594 | .name = "cgfourteen", |
| 595 | }, | 595 | }, |
diff --git a/drivers/video/cg3.c b/drivers/video/cg3.c index 3aa7b6cb0268..99f87fb61d05 100644 --- a/drivers/video/cg3.c +++ b/drivers/video/cg3.c | |||
| @@ -456,7 +456,7 @@ static int __devexit cg3_remove(struct of_device *op) | |||
| 456 | return 0; | 456 | return 0; |
| 457 | } | 457 | } |
| 458 | 458 | ||
| 459 | static struct of_device_id cg3_match[] = { | 459 | static const struct of_device_id cg3_match[] = { |
| 460 | { | 460 | { |
| 461 | .name = "cgthree", | 461 | .name = "cgthree", |
| 462 | }, | 462 | }, |
diff --git a/drivers/video/cg6.c b/drivers/video/cg6.c index 2f64bb3bd254..9eaa63ab08fa 100644 --- a/drivers/video/cg6.c +++ b/drivers/video/cg6.c | |||
| @@ -814,7 +814,7 @@ static int __devexit cg6_remove(struct of_device *op) | |||
| 814 | return 0; | 814 | return 0; |
| 815 | } | 815 | } |
| 816 | 816 | ||
| 817 | static struct of_device_id cg6_match[] = { | 817 | static const struct of_device_id cg6_match[] = { |
| 818 | { | 818 | { |
| 819 | .name = "cgsix", | 819 | .name = "cgsix", |
| 820 | }, | 820 | }, |
diff --git a/drivers/video/ffb.c b/drivers/video/ffb.c index 7992b13ee68f..9dbb9646081f 100644 --- a/drivers/video/ffb.c +++ b/drivers/video/ffb.c | |||
| @@ -1042,7 +1042,7 @@ static int __devexit ffb_remove(struct of_device *op) | |||
| 1042 | return 0; | 1042 | return 0; |
| 1043 | } | 1043 | } |
| 1044 | 1044 | ||
| 1045 | static struct of_device_id ffb_match[] = { | 1045 | static const struct of_device_id ffb_match[] = { |
| 1046 | { | 1046 | { |
| 1047 | .name = "SUNW,ffb", | 1047 | .name = "SUNW,ffb", |
| 1048 | }, | 1048 | }, |
diff --git a/drivers/video/leo.c b/drivers/video/leo.c index 13fea61d6ae4..465459e5eae6 100644 --- a/drivers/video/leo.c +++ b/drivers/video/leo.c | |||
| @@ -641,7 +641,7 @@ static int __devexit leo_remove(struct of_device *op) | |||
| 641 | return 0; | 641 | return 0; |
| 642 | } | 642 | } |
| 643 | 643 | ||
| 644 | static struct of_device_id leo_match[] = { | 644 | static const struct of_device_id leo_match[] = { |
| 645 | { | 645 | { |
| 646 | .name = "SUNW,leo", | 646 | .name = "SUNW,leo", |
| 647 | }, | 647 | }, |
diff --git a/drivers/video/p9100.c b/drivers/video/p9100.c index 9e903454ffc1..7000f2cd5854 100644 --- a/drivers/video/p9100.c +++ b/drivers/video/p9100.c | |||
| @@ -349,7 +349,7 @@ static int __devexit p9100_remove(struct of_device *op) | |||
| 349 | return 0; | 349 | return 0; |
| 350 | } | 350 | } |
| 351 | 351 | ||
| 352 | static struct of_device_id p9100_match[] = { | 352 | static const struct of_device_id p9100_match[] = { |
| 353 | { | 353 | { |
| 354 | .name = "p9100", | 354 | .name = "p9100", |
| 355 | }, | 355 | }, |
diff --git a/drivers/video/tcx.c b/drivers/video/tcx.c index 2a03f78bbb0d..643afbfe8277 100644 --- a/drivers/video/tcx.c +++ b/drivers/video/tcx.c | |||
| @@ -505,7 +505,7 @@ static int __devexit tcx_remove(struct of_device *op) | |||
| 505 | return 0; | 505 | return 0; |
| 506 | } | 506 | } |
| 507 | 507 | ||
| 508 | static struct of_device_id tcx_match[] = { | 508 | static const struct of_device_id tcx_match[] = { |
| 509 | { | 509 | { |
| 510 | .name = "SUNW,tcx", | 510 | .name = "SUNW,tcx", |
| 511 | }, | 511 | }, |
diff --git a/drivers/watchdog/cpwd.c b/drivers/watchdog/cpwd.c index 1f1ee2520f17..084dfe9cecfb 100644 --- a/drivers/watchdog/cpwd.c +++ b/drivers/watchdog/cpwd.c | |||
| @@ -666,7 +666,7 @@ static int __devexit cpwd_remove(struct of_device *op) | |||
| 666 | return 0; | 666 | return 0; |
| 667 | } | 667 | } |
| 668 | 668 | ||
| 669 | static struct of_device_id cpwd_match[] = { | 669 | static const struct of_device_id cpwd_match[] = { |
| 670 | { | 670 | { |
| 671 | .name = "watchdog", | 671 | .name = "watchdog", |
| 672 | }, | 672 | }, |
diff --git a/drivers/watchdog/riowd.c b/drivers/watchdog/riowd.c index 04fd1bac2db5..09cb1833ea27 100644 --- a/drivers/watchdog/riowd.c +++ b/drivers/watchdog/riowd.c | |||
| @@ -230,7 +230,7 @@ static int __devexit riowd_remove(struct of_device *op) | |||
| 230 | return 0; | 230 | return 0; |
| 231 | } | 231 | } |
| 232 | 232 | ||
| 233 | static struct of_device_id riowd_match[] = { | 233 | static const struct of_device_id riowd_match[] = { |
| 234 | { | 234 | { |
| 235 | .name = "pmc", | 235 | .name = "pmc", |
| 236 | }, | 236 | }, |
