[parisc-linux-cvs] hil fix
Thomas Marteau
marteaut@tuxfamily.org
Tue, 05 Mar 2002 22:13:53 +0100
This is a multi-part message in MIME format.
--------------080005090102050509030401
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Hi all,
I noticed that HIL driver was linked to PS2 one in order to get
all its symbols resolved. It looks like adding hp_keyb.o to hilkbd.o in
drivers/char/Makefile fix this. I try the attached patch on my 750.
Thomas
--------------080005090102050509030401
Content-Type: text/plain;
name="hil.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="hil.patch"
diff -Nru linux/drivers/char/Makefile linux.new/drivers/char/Makefile
--- linux/drivers/char/Makefile Tue Mar 5 18:52:55 2002
+++ linux.new/drivers/char/Makefile Tue Mar 5 19:02:44 2002
@@ -148,7 +148,7 @@
obj-$(CONFIG_PCI) += keyboard.o $(KEYMAP)
endif
-obj-$(CONFIG_HIL) += hilkbd.o
+obj-$(CONFIG_HIL) += hilkbd.o hp_keyb.o
obj-$(CONFIG_HP_SDC) += hp_sdc.o
obj-$(CONFIG_MAGIC_SYSRQ) += sysrq.o
obj-$(CONFIG_ATARI_DSP56K) += dsp56k.o
--------------080005090102050509030401--