[PATCH 1/2] move input/serio closer to the top of drivers/Makefile so serio_bus is available early

From: Vojtech Pavlik
Date: Thu Jul 29 2004 - 12:06:52 EST


You can pull this changeset from:
bk://kernel.bkbits.net/vojtech/input

===================================================================

ChangeSet@xxxxxxxxxx, 2004-07-19 22:34:23-05:00, dtor_core@xxxxxxxxxxxxx
Input: move input/serio closer to the top of drivers/Makefile so
serio_bus is available early

Signed-off-by: Dmitry Torokhov <dtor@xxxxxxx>


Makefile | 4 +++-
1 files changed, 3 insertions(+), 1 deletion(-)

===================================================================

diff -Nru a/drivers/Makefile b/drivers/Makefile
--- a/drivers/Makefile Thu Jul 29 18:52:08 2004
+++ b/drivers/Makefile Thu Jul 29 18:52:08 2004
@@ -15,6 +15,9 @@
# char/ comes before serial/ etc so that the VT console is the boot-time
# default.
obj-y += char/
+# we also need input/serio early so serio bus is initialized by the time
+# serial drivers start registering their serio ports
+obj-$(CONFIG_SERIO) += input/serio/
obj-y += serial/
obj-$(CONFIG_PARPORT) += parport/
obj-y += base/ block/ misc/ net/ media/
@@ -37,7 +40,6 @@
obj-$(CONFIG_TC) += tc/
obj-$(CONFIG_USB) += usb/
obj-$(CONFIG_USB_GADGET) += usb/gadget/
-obj-$(CONFIG_SERIO) += input/serio/
obj-$(CONFIG_INPUT) += input/
obj-$(CONFIG_GAMEPORT) += input/gameport/
obj-$(CONFIG_I2O) += message/

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/