patch-2.4.26 linux-2.4.26/drivers/video/pm3fb.c
Next file: linux-2.4.26/drivers/video/radeonfb.c
Previous file: linux-2.4.26/drivers/video/amifb.c
Back to the patch index
Back to the overall index
- Lines: 29
- Date:
2004-04-14 06:05:38.000000000 -0700
- Orig file:
linux-2.4.25/drivers/video/pm3fb.c
- Orig date:
2002-08-02 17:39:45.000000000 -0700
diff -urN linux-2.4.25/drivers/video/pm3fb.c linux-2.4.26/drivers/video/pm3fb.c
@@ -19,6 +19,7 @@
* $Header: /cvsroot/linux/drivers/video/pm3fb.c,v 1.1 2002/02/25 19:11:06 marcelo Exp $
*
* CHANGELOG:
+ * Wed Nov 13 11:19:34 MET 2002, v 1.4.11C: option flatpanel: wasn't available in module, fixed.
* Mon Feb 11 10:35:48 MET 2002, v 1.4.11B: Cosmetic update.
* Wed Jan 23 14:16:59 MET 2002, v 1.4.11: Preliminary 2.5.x support, patch for 2.5.2.
* Wed Nov 28 11:08:29 MET 2001, v 1.4.10: potential bug fix for SDRAM-based board, patch for 2.4.16.
@@ -3756,6 +3757,8 @@
MODULE_PARM_DESC(printtimings, "print the memory timings of the card(s)");
MODULE_PARM(forcesize, PM3_MAX_BOARD_MODULE_ARRAY_SHORT);
MODULE_PARM_DESC(forcesize, "force specified memory size");
+MODULE_PARM(flatpanel, PM3_MAX_BOARD_MODULE_ARRAY_SHORT);
+MODULE_PARM_DESC(flatpanel, "flatpanel (LCD) support (preliminary)");
/*
MODULE_SUPPORTED_DEVICE("Permedia3 PCI boards")
MODULE_GENERIC_TABLE(gtype,name)
@@ -3800,6 +3803,11 @@
sprintf(ts, ",depth:%d:%d", i, depth[i]);
strncat(g_options, ts, PM3_OPTIONS_SIZE - strlen(g_options));
}
+ if (flatpanel[i])
+ {
+ sprintf(ts, ",flatpanel:%d:", i);
+ strncat(g_options, ts, PM3_OPTIONS_SIZE - strlen(g_options));
+ }
}
g_options[PM3_OPTIONS_SIZE - 1] = '\0';
DPRINTK(1, "pm3fb use options: %s\n", g_options);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)