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:
@@ -571,7 +571,6 @@ static struct platform_device *cros_platform_device;
|
||||
static struct platform_driver cros_platform_driver = {
|
||||
.driver = {
|
||||
.name = "chromeos_laptop",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = chromeos_laptop_probe,
|
||||
};
|
||||
|
@@ -2117,7 +2117,6 @@ static void acer_platform_shutdown(struct platform_device *device)
|
||||
static struct platform_driver acer_platform_driver = {
|
||||
.driver = {
|
||||
.name = "acer-wmi",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &acer_pm,
|
||||
},
|
||||
.probe = acer_platform_probe,
|
||||
|
@@ -533,7 +533,6 @@ static const struct dev_pm_ops acerhdf_pm_ops = {
|
||||
static struct platform_driver acerhdf_driver = {
|
||||
.driver = {
|
||||
.name = "acerhdf",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &acerhdf_pm_ops,
|
||||
},
|
||||
.probe = acerhdf_probe,
|
||||
|
@@ -157,7 +157,6 @@ static struct platform_zone *zone_data;
|
||||
static struct platform_driver platform_driver = {
|
||||
.driver = {
|
||||
.name = "alienware-wmi",
|
||||
.owner = THIS_MODULE,
|
||||
}
|
||||
};
|
||||
|
||||
|
@@ -138,7 +138,6 @@ static int amilo_rfkill_remove(struct platform_device *device)
|
||||
static struct platform_driver amilo_rfkill_driver = {
|
||||
.driver = {
|
||||
.name = KBUILD_MODNAME,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = amilo_rfkill_probe,
|
||||
.remove = amilo_rfkill_remove,
|
||||
|
@@ -1699,7 +1699,6 @@ static void asus_platform_exit(struct asus_laptop *asus)
|
||||
static struct platform_driver platform_driver = {
|
||||
.driver = {
|
||||
.name = ASUS_LAPTOP_FILE,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
};
|
||||
|
||||
|
@@ -710,7 +710,6 @@ static int compal_remove(struct platform_device *);
|
||||
static struct platform_driver compal_driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = compal_probe,
|
||||
.remove = compal_remove,
|
||||
|
@@ -84,7 +84,6 @@ static struct calling_interface_token *da_tokens;
|
||||
static struct platform_driver platform_driver = {
|
||||
.driver = {
|
||||
.name = "dell-laptop",
|
||||
.owner = THIS_MODULE,
|
||||
}
|
||||
};
|
||||
|
||||
|
@@ -961,7 +961,6 @@ static const struct dev_pm_ops eeepc_pm_ops = {
|
||||
static struct platform_driver platform_driver = {
|
||||
.driver = {
|
||||
.name = EEEPC_LAPTOP_FILE,
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &eeepc_pm_ops,
|
||||
}
|
||||
};
|
||||
|
@@ -559,7 +559,6 @@ static struct attribute_group fujitsupf_attribute_group = {
|
||||
static struct platform_driver fujitsupf_driver = {
|
||||
.driver = {
|
||||
.name = "fujitsu-laptop",
|
||||
.owner = THIS_MODULE,
|
||||
}
|
||||
};
|
||||
|
||||
|
@@ -318,7 +318,6 @@ static struct platform_driver hdaps_driver = {
|
||||
.probe = hdaps_probe,
|
||||
.driver = {
|
||||
.name = "hdaps",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &hdaps_pm,
|
||||
},
|
||||
};
|
||||
|
@@ -1006,7 +1006,6 @@ static const struct dev_pm_ops hp_wmi_pm_ops = {
|
||||
static struct platform_driver hp_wmi_driver = {
|
||||
.driver = {
|
||||
.name = "hp-wmi",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &hp_wmi_pm_ops,
|
||||
},
|
||||
.remove = __exit_p(hp_wmi_bios_remove),
|
||||
|
@@ -966,7 +966,6 @@ static struct platform_driver ideapad_acpi_driver = {
|
||||
.remove = ideapad_acpi_remove,
|
||||
.driver = {
|
||||
.name = "ideapad_acpi",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &ideapad_pm,
|
||||
.acpi_match_table = ACPI_PTR(ideapad_device_ids),
|
||||
},
|
||||
|
@@ -133,7 +133,6 @@ static int mfld_pb_remove(struct platform_device *pdev)
|
||||
static struct platform_driver mfld_pb_driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = mfld_pb_probe,
|
||||
.remove = mfld_pb_remove,
|
||||
|
@@ -555,7 +555,6 @@ static const struct platform_device_id therm_id_table[] = {
|
||||
static struct platform_driver mid_thermal_driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &mid_thermal_pm,
|
||||
},
|
||||
.probe = mid_thermal_probe,
|
||||
|
@@ -288,7 +288,6 @@ static int oaktrail_remove(struct platform_device *pdev)
|
||||
static struct platform_driver oaktrail_driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = oaktrail_probe,
|
||||
.remove = oaktrail_remove,
|
||||
|
@@ -314,7 +314,6 @@ err2:
|
||||
static struct platform_driver platform_pmic_gpio_driver = {
|
||||
.driver = {
|
||||
.name = DRIVER_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = platform_pmic_gpio_probe,
|
||||
};
|
||||
|
@@ -573,7 +573,6 @@ static struct attribute_group msipf_old_attribute_group = {
|
||||
static struct platform_driver msipf_driver = {
|
||||
.driver = {
|
||||
.name = "msi-laptop-pf",
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &msi_laptop_pm,
|
||||
},
|
||||
};
|
||||
|
@@ -82,7 +82,6 @@ static int samsungq10_remove(struct platform_device *pdev)
|
||||
static struct platform_driver samsungq10_driver = {
|
||||
.driver = {
|
||||
.name = KBUILD_MODNAME,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = samsungq10_probe,
|
||||
.remove = samsungq10_remove,
|
||||
|
@@ -581,7 +581,6 @@ static atomic_t sony_pf_users = ATOMIC_INIT(0);
|
||||
static struct platform_driver sony_pf_driver = {
|
||||
.driver = {
|
||||
.name = "sony-laptop",
|
||||
.owner = THIS_MODULE,
|
||||
}
|
||||
};
|
||||
static struct platform_device *sony_pf_device;
|
||||
|
@@ -234,7 +234,6 @@ static const struct dev_pm_ops tc1100_pm_ops = {
|
||||
static struct platform_driver tc1100_driver = {
|
||||
.driver = {
|
||||
.name = "tc1100-wmi",
|
||||
.owner = THIS_MODULE,
|
||||
#ifdef CONFIG_PM
|
||||
.pm = &tc1100_pm_ops,
|
||||
#endif
|
||||
|
@@ -972,7 +972,6 @@ static void tpacpi_shutdown_handler(struct platform_device *pdev)
|
||||
static struct platform_driver tpacpi_pdriver = {
|
||||
.driver = {
|
||||
.name = TPACPI_DRVR_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
.pm = &tpacpi_pm,
|
||||
},
|
||||
.shutdown = tpacpi_shutdown_handler,
|
||||
@@ -981,7 +980,6 @@ static struct platform_driver tpacpi_pdriver = {
|
||||
static struct platform_driver tpacpi_hwmon_pdriver = {
|
||||
.driver = {
|
||||
.name = TPACPI_HWMON_DRVR_NAME,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
};
|
||||
|
||||
|
@@ -71,7 +71,6 @@ static int xo1_rfkill_remove(struct platform_device *pdev)
|
||||
static struct platform_driver xo1_rfkill_driver = {
|
||||
.driver = {
|
||||
.name = "xo1-rfkill",
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
.probe = xo1_rfkill_probe,
|
||||
.remove = xo1_rfkill_remove,
|
||||
|
Reference in New Issue
Block a user