From: Florian Tobias Schandinat Date: Fri, 17 Sep 2010 01:56:18 +0000 (+0000) Subject: viafb: enable I2C for CRT X-Git-Tag: v2.6.37-rc1~80^2~12 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=ee40b7d1c0391944cdd328d4e2432bd4c110c644;p=~emulex%2Finfiniband.git viafb: enable I2C for CRT This patch enables the I2C port to talk with the CRT. This allows adding EDID reading and parsing capability for CRTs. Just a small preparation, no notable changes in user experience yet. Signed-off-by: Florian Tobias Schandinat Acked-by: Jonathan Corbet Cc: Joseph Chan --- diff --git a/drivers/video/via/via-core.c b/drivers/video/via/via-core.c index 66f40303311..69101ab9f7c 100644 --- a/drivers/video/via/via-core.c +++ b/drivers/video/via/via-core.c @@ -20,7 +20,7 @@ * The default port config. */ static struct via_port_cfg adap_configs[] = { - [VIA_PORT_26] = { VIA_PORT_I2C, VIA_MODE_OFF, VIASR, 0x26 }, + [VIA_PORT_26] = { VIA_PORT_I2C, VIA_MODE_I2C, VIASR, 0x26 }, [VIA_PORT_31] = { VIA_PORT_I2C, VIA_MODE_I2C, VIASR, 0x31 }, [VIA_PORT_25] = { VIA_PORT_GPIO, VIA_MODE_GPIO, VIASR, 0x25 }, [VIA_PORT_2C] = { VIA_PORT_GPIO, VIA_MODE_I2C, VIASR, 0x2c },