Commit 94f17cd7887ca681ea88fda1fd9bf65c0ca161f0

Authored by Ian Abbott
Committed by Greg Kroah-Hartman
1 parent 14ec539482

hotplug: Support kernel/hotplug sysctl variable when !CONFIG_NET

The kernel/hotplug sysctl variable (/proc/sys/kernel/hotplug file) was
made conditional on CONFIG_NET by commit
f743ca5e10f4145e0b3e6d11b9b46171e16af7ce (applied in 2.6.18) to fix
problems with undefined references in 2.6.16 when CONFIG_HOTPLUG=y &&
!CONFIG_NET, but this restriction is no longer needed.

This patch makes the kernel/hotplug sysctl variable depend only on
CONFIG_HOTPLUG.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Acked-by: Randy Dunlap <randy.dunlap@oracle.COM>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -562,7 +562,7 @@
562 562 .extra2 = &one,
563 563 },
564 564 #endif
565   -#if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET)
  565 +#ifdef CONFIG_HOTPLUG
566 566 {
567 567 .procname = "hotplug",
568 568 .data = &uevent_helper,