Minor miscellaneous comment updates: mostly identifying drivers at

the top of their source code....
This commit is contained in:
ddouthitt
2001-09-24 16:30:31 +00:00
parent 2e654fd333
commit f23292a554
6 changed files with 45 additions and 1 deletions
+14
View File
@@ -1,3 +1,11 @@
/*
* Driver master (lcd.c)
*
* This code actually sets up the drivers as requested,
* initializes drivers, and allocates memory for drivers.
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
@@ -90,6 +98,12 @@
lcd_logical_driver lcd;
// TODO: Add multiple names for the same driver?
//
// Would allow the use of "MatrixOrbital" (for example) or
// "Joystick" or "CrystalFontz" or similar more memorable
// names, as well as older ones...
//
lcd_physical_driver drivers[] = {
{"base", drv_base_init,},
#ifdef MTXORB_DRV