diff options
| author | Greg Kroah-Hartman <gregkh@suse.de> | 2007-11-28 15:59:15 -0800 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-01-24 20:40:35 -0800 | 
| commit | e5dd12784617f0f1fae5f96a7fac1ec4c49fadbe (patch) | |
| tree | c81e2a2f3aa1c60b92951d398774f1391bdc6a1c /drivers/base/platform.c | |
| parent | c63469a3985a9771c18a916b8d42845d044ea0b1 (diff) | |
| download | olio-linux-3.10-e5dd12784617f0f1fae5f96a7fac1ec4c49fadbe.tar.xz olio-linux-3.10-e5dd12784617f0f1fae5f96a7fac1ec4c49fadbe.zip  | |
Driver core: move the static kobject out of struct driver
This patch removes the kobject, and a few other driver-core-only fields
out of struct driver and into the driver core only.  Now drivers can be
safely create on the stack or statically (like they currently are.)
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/platform.c')
| -rw-r--r-- | drivers/base/platform.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/platform.c b/drivers/base/platform.c index d56a05f94f6..bdd59e8358f 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c @@ -499,7 +499,7 @@ int __init_or_module platform_driver_probe(struct platform_driver *drv,  	 */  	spin_lock(&platform_bus_type.p->klist_drivers.k_lock);  	drv->probe = NULL; -	if (code == 0 && list_empty(&drv->driver.klist_devices.k_list)) +	if (code == 0 && list_empty(&drv->driver.p->klist_devices.k_list))  		retval = -ENODEV;  	drv->driver.probe = platform_drv_probe_fail;  	spin_unlock(&platform_bus_type.p->klist_drivers.k_lock);  |