diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-01-19 18:07:10 +0100 |
---|---|---|
committer | Adrian Bunk <bunk@r063144.stusta.swh.mhn.de> | 2006-01-19 18:07:10 +0100 |
commit | 9c4b562abc9005e4b413de02c85d3d29da707cba (patch) | |
tree | 20985e711d285aaf1b87aa3b4837a7ed2bc3b73a /drivers/char/ip2/Makefile | |
parent | 0f36b018b2e314d45af86449f1a97facb1fbe300 (diff) |
Move ip2.c and ip2main.c to drivers/char/ip2/ where the other files
used by this driver reside.
Renamed ip2.c to ip2base.c to allow ip2.o to be built from multiple
objects.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Michael H. Warfield <mhw@WittsEnd.com>
Diffstat (limited to 'drivers/char/ip2/Makefile')
-rw-r--r-- | drivers/char/ip2/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/char/ip2/Makefile b/drivers/char/ip2/Makefile new file mode 100644 index 000000000000..6bfe2543ddc2 --- /dev/null +++ b/drivers/char/ip2/Makefile @@ -0,0 +1,8 @@ +# +# Makefile for the Computone IntelliPort Plus Driver +# + +obj-$(CONFIG_COMPUTONE) += ip2.o ip2main.o + +ip2-objs := ip2base.o + |