]> git.baikalelectronics.ru Git - kernel.git/commit
USB / PM: Remove unneeded #ifdef and associated dead code
authorAndreas Ruprecht <rupran@einserver.de>
Sun, 8 Feb 2015 19:36:38 +0000 (20:36 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Sun, 8 Feb 2015 22:42:25 +0000 (23:42 +0100)
commit466b75ee887b0dacba3a18dacd6f4bd2e6f57216
tree4a8bfe68ee9d960cc51f0636784419a97d16a235
parent0b7fdd2d1d17447e20e163310d83843a4d0fb024
USB / PM: Remove unneeded #ifdef and associated dead code

In commit 07dc33e4cc4a ("USB / PM: Drop CONFIG_PM_RUNTIME from the
USB core"), all occurrences of CONFIG_PM_RUNTIME in the USB core
code were replaced by CONFIG_PM. This created the following structure
of #ifdef blocks in drivers/usb/core/hub.c:

 [...]
 #ifdef CONFIG_PM
 #ifdef CONFIG_PM
 /* always on / undead */
 #else
 /* dead */
 #endif
 [...]

This patch removes unnecessary inner "#ifdef CONFIG_PM" as well as
the corresponding dead #else block. This inconsistency was found using
the undertaker-checkpatch tool.

Signed-off-by: Andreas Ruprecht <rupran@einserver.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/usb/core/hub.c