From: Wolfram Sang Date: Mon, 10 Nov 2014 23:49:25 +0000 (+0100) Subject: Revert "core: platform: add warning if driver has no owner" X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=6386a15c445c1cd0108671a0078a4b65af89799c;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git Revert "core: platform: add warning if driver has no owner" This is too noisy at the moment, triggered by codepaths not accessed on our test-systems. Needs more investigation. Signed-off-by: Wolfram Sang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/base/driver.c b/drivers/base/driver.c index 6b10ff3bb410..9e29943e56ca 100644 --- a/drivers/base/driver.c +++ b/drivers/base/driver.c @@ -151,9 +151,6 @@ int driver_register(struct device_driver *drv) BUG_ON(!drv->bus->p); - if (!drv->owner) - printk(KERN_WARNING "Driver '%s' needs an owner", drv->name); - if ((drv->bus->probe && drv->probe) || (drv->bus->remove && drv->remove) || (drv->bus->shutdown && drv->shutdown))