e75892715d
This patch adds the basic infrastructure and a few stub drivers for devices that are connected via I2C busses. The infrastructure will be used to replace and extend the support that is scattered throughout viafb. The stub drivers are not very useful yet but they show how the infrastructure works, provide information about the chips integrated into a system and maybe gather some testers as it would be very difficult for a single person to get a sane test environment. The only thing this actually does is probing the I2C busses which will hopefully not cause any regressions. Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
13 lines
453 B
Makefile
13 lines
453 B
Makefile
#
|
|
# Makefile for the VIA framebuffer driver (for Linux Kernel 2.6)
|
|
#
|
|
|
|
obj-$(CONFIG_FB_VIA) += viafb.o
|
|
|
|
viafb-y :=viafbdev.o hw.o via_i2c.o dvi.o lcd.o ioctl.o accel.o \
|
|
via_utility.o vt1636.o global.o tblDPASetting.o viamode.o \
|
|
via-core.o via-gpio.o via_modesetting.o via_clock.o \
|
|
via_aux.o via_aux_edid.o via_aux_vt1636.o via_aux_vt1632.o \
|
|
via_aux_vt1631.o via_aux_vt1625.o via_aux_vt1622.o via_aux_vt1621.o \
|
|
via_aux_sii164.o via_aux_ch7301.o
|