From: Alan Stern Date: Mon, 8 Mar 2010 21:46:19 +0000 (-0500) Subject: Driver core: don't initialize wakeup flags X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ffa156590f98b750161757a16c37ac8e152a7859;p=linux-beck.git Driver core: don't initialize wakeup flags This patch (as1351) removes an unnecessary and unwanted assignment from device_initialize(). The wakeup flags are set to 0 along with everything else when the device structure is allocated, so we don't need to do it again. Furthermore, the subsystem might already have set these flags to their correct values; we don't want to override it. Signed-off-by: Alan Stern Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/base/core.c b/drivers/base/core.c index b56a0ba31d4a..e11c8c3e7416 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c @@ -562,7 +562,6 @@ void device_initialize(struct device *dev) init_MUTEX(&dev->sem); spin_lock_init(&dev->devres_lock); INIT_LIST_HEAD(&dev->devres_head); - device_init_wakeup(dev, 0); device_pm_init(dev); set_dev_node(dev, -1); }