From: Rusty Russell Date: Tue, 26 Sep 2006 08:52:32 +0000 (+0200) Subject: [PATCH] Allow early_param and identical __setup to exist X-Git-Tag: v2.6.19-rc1~1077^2~135 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33df0d19ea425d28bd5afb48898af32237fe81af;p=pandora-kernel.git [PATCH] Allow early_param and identical __setup to exist We currently assume that boot parameters which are handled by early_param() will not overlap boot parameters handled by __setup: if they do, behaviour is dependent on link order, usually meaning __setup will not get called. ACPI wants to use early_param("pci"), and pci uses __setup("pci="), so we modify the core to let them coexist: "pci=noacpi" will now get passed to both. Signed-off-by: Rusty Russell Signed-off-by: Andi Kleen --- Reading git-diff-tree failed