Merge tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
Pull driver core update from Greg KH: "Here's the set of driver core patches for 3.19-rc1. They are dominated by the removal of the .owner field in platform drivers. They touch a lot of files, but they are "simple" changes, just removing a line in a structure. Other than that, a few minor driver core and debugfs changes. There are some ath9k patches coming in through this tree that have been acked by the wireless maintainers as they relied on the debugfs changes. Everything has been in linux-next for a while" * tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (324 commits) Revert "ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries" fs: debugfs: add forward declaration for struct device type firmware class: Deletion of an unnecessary check before the function call "vunmap" firmware loader: fix hung task warning dump devcoredump: provide a one-way disable function device: Add dev_<level>_once variants ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries ath: use seq_file api for ath9k debugfs files debugfs: add helper function to create device related seq_file drivers/base: cacheinfo: remove noisy error boot message Revert "core: platform: add warning if driver has no owner" drivers: base: support cpu cache information interface to userspace via sysfs drivers: base: add cpu_device_create to support per-cpu devices topology: replace custom attribute macros with standard DEVICE_ATTR* cpumask: factor out show_cpumap into separate helper function driver core: Fix unbalanced device reference in drivers_probe driver core: fix race with userland in device_add() sysfs/kernfs: make read requests on pre-alloc files use the buffer. sysfs/kernfs: allow attributes to request write buffer be pre-allocated. fs: sysfs: return EGBIG on write if offset is larger than file size ...
This commit is contained in:
@@ -134,7 +134,6 @@ static struct platform_driver atmel_trng_driver = {
|
||||
.remove = atmel_trng_remove,
|
||||
.driver = {
|
||||
.name = "atmel-trng",
|
||||
.owner = THIS_MODULE,
|
||||
#ifdef CONFIG_PM
|
||||
.pm = &atmel_trng_pm_ops,
|
||||
#endif /* CONFIG_PM */
|
||||
|
||||
@@ -99,7 +99,6 @@ MODULE_DEVICE_TABLE(of, bcm2835_rng_of_match);
|
||||
static struct platform_driver bcm2835_rng_driver = {
|
||||
.driver = {
|
||||
.name = "bcm2835-rng",
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = bcm2835_rng_of_match,
|
||||
},
|
||||
.probe = bcm2835_rng_probe,
|
||||
|
||||
@@ -162,7 +162,6 @@ static struct platform_driver bcm63xx_rng_driver = {
|
||||
.remove = bcm63xx_rng_remove,
|
||||
.driver = {
|
||||
.name = "bcm63xx-rng",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
@@ -169,7 +169,6 @@ static UNIVERSAL_DEV_PM_OPS(exynos_rng_pm_ops, exynos_rng_runtime_suspend,
|
||||
static struct platform_driver exynos_rng_driver = {
|
||||
.driver = {
|
||||
.name = "exynos-rng",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &exynos_rng_pm_ops,
|
||||
},
|
||||
.probe = exynos_rng_probe,
|
||||
|
||||
@@ -185,7 +185,6 @@ static struct platform_driver msm_rng_driver = {
|
||||
.remove = msm_rng_remove,
|
||||
.driver = {
|
||||
.name = KBUILD_MODNAME,
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = of_match_ptr(msm_rng_of_match),
|
||||
}
|
||||
};
|
||||
|
||||
@@ -206,7 +206,6 @@ static int __exit mxc_rnga_remove(struct platform_device *pdev)
|
||||
static struct platform_driver mxc_rnga_driver = {
|
||||
.driver = {
|
||||
.name = "mxc_rnga",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.remove = __exit_p(mxc_rnga_remove),
|
||||
};
|
||||
|
||||
@@ -750,7 +750,6 @@ MODULE_DEVICE_TABLE(of, n2rng_match);
|
||||
static struct platform_driver n2rng_driver = {
|
||||
.driver = {
|
||||
.name = "n2rng",
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = n2rng_match,
|
||||
},
|
||||
.probe = n2rng_probe,
|
||||
|
||||
@@ -117,7 +117,6 @@ static int __exit octeon_rng_remove(struct platform_device *pdev)
|
||||
static struct platform_driver octeon_rng_driver = {
|
||||
.driver = {
|
||||
.name = "octeon_rng",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = octeon_rng_probe,
|
||||
.remove = __exit_p(octeon_rng_remove),
|
||||
|
||||
@@ -456,7 +456,6 @@ static SIMPLE_DEV_PM_OPS(omap_rng_pm, omap_rng_suspend, omap_rng_resume);
|
||||
static struct platform_driver omap_rng_driver = {
|
||||
.driver = {
|
||||
.name = "omap_rng",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = OMAP_RNG_PM,
|
||||
.of_match_table = of_match_ptr(omap_rng_of_match),
|
||||
},
|
||||
|
||||
@@ -126,7 +126,6 @@ static int omap3_rom_rng_remove(struct platform_device *pdev)
|
||||
static struct platform_driver omap3_rom_rng_driver = {
|
||||
.driver = {
|
||||
.name = "omap3-rom-rng",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = omap3_rom_rng_probe,
|
||||
.remove = omap3_rom_rng_remove,
|
||||
|
||||
@@ -142,7 +142,6 @@ static struct of_device_id rng_match[] = {
|
||||
static struct platform_driver rng_driver = {
|
||||
.driver = {
|
||||
.name = "pasemi-rng",
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = rng_match,
|
||||
},
|
||||
.probe = rng_probe,
|
||||
|
||||
@@ -133,7 +133,6 @@ static struct of_device_id ppc4xx_rng_match[] = {
|
||||
static struct platform_driver ppc4xx_rng_driver = {
|
||||
.driver = {
|
||||
.name = MODULE_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = ppc4xx_rng_match,
|
||||
},
|
||||
.probe = ppc4xx_rng_probe,
|
||||
|
||||
@@ -200,7 +200,6 @@ MODULE_DEVICE_TABLE(of, timeriomem_rng_match);
|
||||
static struct platform_driver timeriomem_rng_driver = {
|
||||
.driver = {
|
||||
.name = "timeriomem_rng",
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = timeriomem_rng_match,
|
||||
},
|
||||
.probe = timeriomem_rng_probe,
|
||||
|
||||
@@ -158,7 +158,6 @@ static int __exit tx4939_rng_remove(struct platform_device *dev)
|
||||
static struct platform_driver tx4939_rng_driver = {
|
||||
.driver = {
|
||||
.name = "tx4939-rng",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.remove = tx4939_rng_remove,
|
||||
};
|
||||
|
||||
@@ -2788,7 +2788,6 @@ static struct of_device_id ipmi_match[] =
|
||||
static struct platform_driver ipmi_driver = {
|
||||
.driver = {
|
||||
.name = DEVICE_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = ipmi_match,
|
||||
},
|
||||
.probe = ipmi_probe,
|
||||
|
||||
@@ -1482,7 +1482,6 @@ static void sonypi_shutdown(struct platform_device *dev)
|
||||
static struct platform_driver sonypi_driver = {
|
||||
.driver = {
|
||||
.name = "sonypi",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = SONYPI_PM,
|
||||
},
|
||||
.probe = sonypi_probe,
|
||||
|
||||
@@ -337,7 +337,6 @@ static struct platform_driver tb0219_device_driver = {
|
||||
.remove = tb0219_remove,
|
||||
.driver = {
|
||||
.name = "TB0219",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
@@ -152,7 +152,6 @@ static SIMPLE_DEV_PM_OPS(tpm_atml_pm, tpm_pm_suspend, tpm_pm_resume);
|
||||
static struct platform_driver atml_drv = {
|
||||
.driver = {
|
||||
.name = "tpm_atmel",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &tpm_atml_pm,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -258,7 +258,6 @@ static SIMPLE_DEV_PM_OPS(tpm_nsc_pm, tpm_pm_suspend, tpm_pm_resume);
|
||||
static struct platform_driver nsc_drv = {
|
||||
.driver = {
|
||||
.name = "tpm_nsc",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &tpm_nsc_pm,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -837,7 +837,6 @@ MODULE_PARM_DESC(hid, "Set additional specific HID for this driver to probe");
|
||||
static struct platform_driver tis_drv = {
|
||||
.driver = {
|
||||
.name = "tpm_tis",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &tpm_tis_pm,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -179,7 +179,6 @@ static struct platform_driver xillybus_platform_driver = {
|
||||
.remove = xilly_drv_remove,
|
||||
.driver = {
|
||||
.name = xillyname,
|
||||
.owner = THIS_MODULE,
|
||||
.of_match_table = xillybus_of_match,
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user