|
@@ -25,10 +25,12 @@
|
|
|
static void tmds_register_write(int index, u8 data);
|
|
|
static int tmds_register_read(int index);
|
|
|
static int tmds_register_read_bytes(int index, u8 *buff, int buff_len);
|
|
|
-static void dvi_get_panel_size_from_DDCv1(struct tmds_chip_information
|
|
|
- *tmds_chip, struct tmds_setting_information *tmds_setting);
|
|
|
-static void dvi_get_panel_size_from_DDCv2(struct tmds_chip_information
|
|
|
- *tmds_chip, struct tmds_setting_information *tmds_setting);
|
|
|
+static void __devinit dvi_get_panel_size_from_DDCv1(
|
|
|
+ struct tmds_chip_information *tmds_chip,
|
|
|
+ struct tmds_setting_information *tmds_setting);
|
|
|
+static void __devinit dvi_get_panel_size_from_DDCv2(
|
|
|
+ struct tmds_chip_information *tmds_chip,
|
|
|
+ struct tmds_setting_information *tmds_setting);
|
|
|
static int viafb_dvi_query_EDID(void);
|
|
|
|
|
|
static int check_tmds_chip(int device_id_subaddr, int device_id)
|
|
@@ -39,7 +41,7 @@ static int check_tmds_chip(int device_id_subaddr, int device_id)
|
|
|
return FAIL;
|
|
|
}
|
|
|
|
|
|
-void viafb_init_dvi_size(struct tmds_chip_information *tmds_chip,
|
|
|
+void __devinit viafb_init_dvi_size(struct tmds_chip_information *tmds_chip,
|
|
|
struct tmds_setting_information *tmds_setting)
|
|
|
{
|
|
|
DEBUG_MSG(KERN_INFO "viafb_init_dvi_size()\n");
|
|
@@ -60,7 +62,7 @@ void viafb_init_dvi_size(struct tmds_chip_information *tmds_chip,
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
-int viafb_tmds_trasmitter_identify(void)
|
|
|
+int __devinit viafb_tmds_trasmitter_identify(void)
|
|
|
{
|
|
|
unsigned char sr2a = 0, sr1e = 0, sr3e = 0;
|
|
|
|
|
@@ -311,8 +313,9 @@ static int viafb_dvi_query_EDID(void)
|
|
|
}
|
|
|
|
|
|
/* Get Panel Size Using EDID1 Table */
|
|
|
-static void dvi_get_panel_size_from_DDCv1(struct tmds_chip_information
|
|
|
- *tmds_chip, struct tmds_setting_information *tmds_setting)
|
|
|
+static void __devinit dvi_get_panel_size_from_DDCv1(
|
|
|
+ struct tmds_chip_information *tmds_chip,
|
|
|
+ struct tmds_setting_information *tmds_setting)
|
|
|
{
|
|
|
int i, max_h = 0, tmp, restore;
|
|
|
unsigned char rData;
|
|
@@ -416,8 +419,9 @@ static void dvi_get_panel_size_from_DDCv1(struct tmds_chip_information
|
|
|
}
|
|
|
|
|
|
/* Get Panel Size Using EDID2 Table */
|
|
|
-static void dvi_get_panel_size_from_DDCv2(struct tmds_chip_information
|
|
|
- *tmds_chip, struct tmds_setting_information *tmds_setting)
|
|
|
+static void __devinit dvi_get_panel_size_from_DDCv2(
|
|
|
+ struct tmds_chip_information *tmds_chip,
|
|
|
+ struct tmds_setting_information *tmds_setting)
|
|
|
{
|
|
|
int restore;
|
|
|
unsigned char R_Buffer[2];
|