74f6ae84b2
Add ddc/i2c support for i810fb. This will allow the driver to get display information, especially for monitors with fickle timings. The i2c support depends on CONFIG_FB_I810_GTF. Changed __init* to __devinit* Signed-off-by: Antonino Daplas <adaplas@pol.net> Signed-off-by: Alexander Nyberg <alexn@telia.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
17 lines
340 B
Makefile
17 lines
340 B
Makefile
#
|
|
# Makefile for the Intel 810/815 framebuffer driver
|
|
#
|
|
|
|
obj-$(CONFIG_FB_I810) += i810fb.o
|
|
|
|
i810fb-objs := i810_main.o i810_accel.o
|
|
|
|
ifdef CONFIG_FB_I810_GTF
|
|
i810fb-objs += i810_gtf.o
|
|
else
|
|
i810fb-objs += i810_dvt.o
|
|
endif
|
|
|
|
ifdef CONFIG_FB_I810_I2C
|
|
i810fb-objs += i810-i2c.o
|
|
endif
|