diff options
author | Devin Heitmueller <dheitmueller@kernellabs.com> | 2010-03-13 20:10:24 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-19 15:59:07 (GMT) |
commit | cb1c0f8e7099ef5ba20c046df3a3790b5683c573 (patch) | |
tree | 7760ce95dd9d38069e53d8281ca6fac2d581641e /drivers/media/dvb/ngene/Makefile | |
parent | 0abf26291d95b09eda44453a0c0655a54b8d90f7 (diff) | |
download | linux-cb1c0f8e7099ef5ba20c046df3a3790b5683c573.tar.xz |
V4L/DVB: ngene: split out i2c code into a separate file
Split out the i2c related code from the ngene-core.c into a new file called
ngene-i2c.c. This is part of a larger refactoring of the driver in preparation
for adding analog support.
Note that this patch makes *no* functional change - all I did was cut/paste the
code and add the function prototypes to ngene.h as needed.
Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/ngene/Makefile')
-rw-r--r-- | drivers/media/dvb/ngene/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/ngene/Makefile b/drivers/media/dvb/ngene/Makefile index df2c593..5e7d310 100644 --- a/drivers/media/dvb/ngene/Makefile +++ b/drivers/media/dvb/ngene/Makefile @@ -2,7 +2,7 @@ # Makefile for the nGene device driver # -ngene-objs := ngene-core.o +ngene-objs := ngene-core.o ngene-i2c.o obj-$(CONFIG_DVB_NGENE) += ngene.o |