diff options
author | Dennis Munsie <dmunsie@cecropia.com> | 2006-06-20 14:55:55 -0400 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2006-07-03 19:04:37 +1000 |
commit | 1f6e8449e11fd79ee30456ce7ec973317b8dd6ae (patch) | |
tree | a795e58b085a515762ac494e6d06651b60a5336f /drivers/video/intelfb | |
parent | 41c9480a1d22e8f28b8675a2d7ec7fd4c50bc900 (diff) | |
download | op-kernel-dev-1f6e8449e11fd79ee30456ce7ec973317b8dd6ae.zip op-kernel-dev-1f6e8449e11fd79ee30456ce7ec973317b8dd6ae.tar.gz |
intelfb: add preliminary i2c support
[07/07] intelfb: adds an option to enable I2C support in the intelfb driver. Also adds
the intel_i2c.c file to the Makefile.
Signed-off-by: Dennis Munsie <dmunsie@cecropia.com>
Diffstat (limited to 'drivers/video/intelfb')
-rw-r--r-- | drivers/video/intelfb/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/video/intelfb/Makefile b/drivers/video/intelfb/Makefile index 722d21d..6c782d3 100644 --- a/drivers/video/intelfb/Makefile +++ b/drivers/video/intelfb/Makefile @@ -1,6 +1,8 @@ obj-$(CONFIG_FB_INTEL) += intelfb.o -intelfb-objs := intelfbdrv.o intelfbhw.o +intelfb-y := intelfbdrv.o intelfbhw.o +intelfb-$(CONFIG_FB_INTEL_I2C) += intelfb_i2c.o +intelfb-objs := $(intelfb-y) ifdef CONFIG_FB_INTEL_DEBUG #EXTRA_CFLAGS += -DDEBUG -DVERBOSE -DREGDUMP |