aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-03 22:53:56 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-03 22:53:56 -0500
commita8a93c6f9922c0d70459668c1300b226cb3918ab (patch)
tree6d484e6cb951bad4805297648ad17e1d42fe03f4 /arch/mips
parent0df1f2487d2f0d04703f142813d53615d62a1da4 (diff)
parent79cd1762933153237731585f0901eec368e54bae (diff)
Merge branch 'platform/remove_owner' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux into driver-core-next
Remove all .owner fields from platform drivers
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/lantiq/xway/dcdc.c1
-rw-r--r--arch/mips/lantiq/xway/dma.c1
-rw-r--r--arch/mips/lantiq/xway/gptu.c1
-rw-r--r--arch/mips/lantiq/xway/xrx200_phy_fw.c1
-rw-r--r--arch/mips/mti-sead3/leds-sead3.c1
-rw-r--r--arch/mips/mti-sead3/sead3-i2c-drv.c1
-rw-r--r--arch/mips/pci/pci-alchemy.c1
-rw-r--r--arch/mips/pci/pci-ar71xx.c1
-rw-r--r--arch/mips/pci/pci-ar724x.c1
-rw-r--r--arch/mips/pci/pci-lantiq.c1
-rw-r--r--arch/mips/pci/pci-rt3883.c1
-rw-r--r--arch/mips/ralink/timer.c1
-rw-r--r--arch/mips/txx9/rbtx4939/setup.c1
13 files changed, 0 insertions, 13 deletions
diff --git a/arch/mips/lantiq/xway/dcdc.c b/arch/mips/lantiq/xway/dcdc.c
index 7688ac0f06d0..ae8e930f5283 100644
--- a/arch/mips/lantiq/xway/dcdc.c
+++ b/arch/mips/lantiq/xway/dcdc.c
@@ -46,7 +46,6 @@ static struct platform_driver dcdc_driver = {
46 .probe = dcdc_probe, 46 .probe = dcdc_probe,
47 .driver = { 47 .driver = {
48 .name = "dcdc-xrx200", 48 .name = "dcdc-xrx200",
49 .owner = THIS_MODULE,
50 .of_match_table = dcdc_match, 49 .of_match_table = dcdc_match,
51 }, 50 },
52}; 51};
diff --git a/arch/mips/lantiq/xway/dma.c b/arch/mips/lantiq/xway/dma.c
index 78a91fa41944..34a116e840d8 100644
--- a/arch/mips/lantiq/xway/dma.c
+++ b/arch/mips/lantiq/xway/dma.c
@@ -261,7 +261,6 @@ static struct platform_driver dma_driver = {
261 .probe = ltq_dma_init, 261 .probe = ltq_dma_init,
262 .driver = { 262 .driver = {
263 .name = "dma-xway", 263 .name = "dma-xway",
264 .owner = THIS_MODULE,
265 .of_match_table = dma_match, 264 .of_match_table = dma_match,
266 }, 265 },
267}; 266};
diff --git a/arch/mips/lantiq/xway/gptu.c b/arch/mips/lantiq/xway/gptu.c
index 850821df924c..f1492b2db017 100644
--- a/arch/mips/lantiq/xway/gptu.c
+++ b/arch/mips/lantiq/xway/gptu.c
@@ -193,7 +193,6 @@ static struct platform_driver dma_driver = {
193 .probe = gptu_probe, 193 .probe = gptu_probe,
194 .driver = { 194 .driver = {
195 .name = "gptu-xway", 195 .name = "gptu-xway",
196 .owner = THIS_MODULE,
197 .of_match_table = gptu_match, 196 .of_match_table = gptu_match,
198 }, 197 },
199}; 198};
diff --git a/arch/mips/lantiq/xway/xrx200_phy_fw.c b/arch/mips/lantiq/xway/xrx200_phy_fw.c
index d4d9d31f152e..e4ed004015c4 100644
--- a/arch/mips/lantiq/xway/xrx200_phy_fw.c
+++ b/arch/mips/lantiq/xway/xrx200_phy_fw.c
@@ -85,7 +85,6 @@ static struct platform_driver xway_phy_driver = {
85 .probe = xway_phy_fw_probe, 85 .probe = xway_phy_fw_probe,
86 .driver = { 86 .driver = {
87 .name = "phy-xrx200", 87 .name = "phy-xrx200",
88 .owner = THIS_MODULE,
89 .of_match_table = xway_phy_match, 88 .of_match_table = xway_phy_match,
90 }, 89 },
91}; 90};
diff --git a/arch/mips/mti-sead3/leds-sead3.c b/arch/mips/mti-sead3/leds-sead3.c
index 0a168c948b01..3abe47b316aa 100644
--- a/arch/mips/mti-sead3/leds-sead3.c
+++ b/arch/mips/mti-sead3/leds-sead3.c
@@ -70,7 +70,6 @@ static struct platform_driver sead3_led_driver = {
70 .remove = sead3_led_remove, 70 .remove = sead3_led_remove,
71 .driver = { 71 .driver = {
72 .name = DRVNAME, 72 .name = DRVNAME,
73 .owner = THIS_MODULE,
74 }, 73 },
75}; 74};
76 75
diff --git a/arch/mips/mti-sead3/sead3-i2c-drv.c b/arch/mips/mti-sead3/sead3-i2c-drv.c
index 1f787a6a7878..2bebf0974e39 100644
--- a/arch/mips/mti-sead3/sead3-i2c-drv.c
+++ b/arch/mips/mti-sead3/sead3-i2c-drv.c
@@ -380,7 +380,6 @@ static int sead3_i2c_platform_resume(struct platform_device *pdev)
380static struct platform_driver sead3_i2c_platform_driver = { 380static struct platform_driver sead3_i2c_platform_driver = {
381 .driver = { 381 .driver = {
382 .name = "sead3-i2c", 382 .name = "sead3-i2c",
383 .owner = THIS_MODULE,
384 }, 383 },
385 .probe = sead3_i2c_platform_probe, 384 .probe = sead3_i2c_platform_probe,
386 .remove = sead3_i2c_platform_remove, 385 .remove = sead3_i2c_platform_remove,
diff --git a/arch/mips/pci/pci-alchemy.c b/arch/mips/pci/pci-alchemy.c
index c19600a03460..28952637a862 100644
--- a/arch/mips/pci/pci-alchemy.c
+++ b/arch/mips/pci/pci-alchemy.c
@@ -505,7 +505,6 @@ static struct platform_driver alchemy_pcictl_driver = {
505 .probe = alchemy_pci_probe, 505 .probe = alchemy_pci_probe,
506 .driver = { 506 .driver = {
507 .name = "alchemy-pci", 507 .name = "alchemy-pci",
508 .owner = THIS_MODULE,
509 }, 508 },
510}; 509};
511 510
diff --git a/arch/mips/pci/pci-ar71xx.c b/arch/mips/pci/pci-ar71xx.c
index d471a26dd5f8..2882f6a0f919 100644
--- a/arch/mips/pci/pci-ar71xx.c
+++ b/arch/mips/pci/pci-ar71xx.c
@@ -416,7 +416,6 @@ static struct platform_driver ar71xx_pci_driver = {
416 .probe = ar71xx_pci_probe, 416 .probe = ar71xx_pci_probe,
417 .driver = { 417 .driver = {
418 .name = "ar71xx-pci", 418 .name = "ar71xx-pci",
419 .owner = THIS_MODULE,
420 }, 419 },
421}; 420};
422 421
diff --git a/arch/mips/pci/pci-ar724x.c b/arch/mips/pci/pci-ar724x.c
index 785b2659b519..204c8525c4bb 100644
--- a/arch/mips/pci/pci-ar724x.c
+++ b/arch/mips/pci/pci-ar724x.c
@@ -423,7 +423,6 @@ static struct platform_driver ar724x_pci_driver = {
423 .probe = ar724x_pci_probe, 423 .probe = ar724x_pci_probe,
424 .driver = { 424 .driver = {
425 .name = "ar724x-pci", 425 .name = "ar724x-pci",
426 .owner = THIS_MODULE,
427 }, 426 },
428}; 427};
429 428
diff --git a/arch/mips/pci/pci-lantiq.c b/arch/mips/pci/pci-lantiq.c
index d3ed15b2b2d1..8b117e638306 100644
--- a/arch/mips/pci/pci-lantiq.c
+++ b/arch/mips/pci/pci-lantiq.c
@@ -242,7 +242,6 @@ static struct platform_driver ltq_pci_driver = {
242 .probe = ltq_pci_probe, 242 .probe = ltq_pci_probe,
243 .driver = { 243 .driver = {
244 .name = "pci-xway", 244 .name = "pci-xway",
245 .owner = THIS_MODULE,
246 .of_match_table = ltq_pci_match, 245 .of_match_table = ltq_pci_match,
247 }, 246 },
248}; 247};
diff --git a/arch/mips/pci/pci-rt3883.c b/arch/mips/pci/pci-rt3883.c
index 72919aeef42b..b0ba9a9e74d6 100644
--- a/arch/mips/pci/pci-rt3883.c
+++ b/arch/mips/pci/pci-rt3883.c
@@ -598,7 +598,6 @@ static struct platform_driver rt3883_pci_driver = {
598 .probe = rt3883_pci_probe, 598 .probe = rt3883_pci_probe,
599 .driver = { 599 .driver = {
600 .name = "rt3883-pci", 600 .name = "rt3883-pci",
601 .owner = THIS_MODULE,
602 .of_match_table = of_match_ptr(rt3883_pci_ids), 601 .of_match_table = of_match_ptr(rt3883_pci_ids),
603 }, 602 },
604}; 603};
diff --git a/arch/mips/ralink/timer.c b/arch/mips/ralink/timer.c
index 5bb29b3790ff..82c72a15bf75 100644
--- a/arch/mips/ralink/timer.c
+++ b/arch/mips/ralink/timer.c
@@ -173,7 +173,6 @@ static struct platform_driver rt_timer_driver = {
173 .remove = rt_timer_remove, 173 .remove = rt_timer_remove,
174 .driver = { 174 .driver = {
175 .name = "rt-timer", 175 .name = "rt-timer",
176 .owner = THIS_MODULE,
177 .of_match_table = rt_timer_match 176 .of_match_table = rt_timer_match
178 }, 177 },
179}; 178};
diff --git a/arch/mips/txx9/rbtx4939/setup.c b/arch/mips/txx9/rbtx4939/setup.c
index 2da5f25f98bc..37030409745c 100644
--- a/arch/mips/txx9/rbtx4939/setup.c
+++ b/arch/mips/txx9/rbtx4939/setup.c
@@ -245,7 +245,6 @@ static int __init rbtx4939_led_probe(struct platform_device *pdev)
245static struct platform_driver rbtx4939_led_driver = { 245static struct platform_driver rbtx4939_led_driver = {
246 .driver = { 246 .driver = {
247 .name = "rbtx4939-led", 247 .name = "rbtx4939-led",
248 .owner = THIS_MODULE,
249 }, 248 },
250}; 249};
251 250