Skip to content

Commit 78cace3

Browse files
author
michael
committed
more descriptive display names with option -l
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@975 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
1 parent 5b875cd commit 78cace3

19 files changed

+20
-19
lines changed

drv_BWCT.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ static void plugin_contrast(RESULT * result, RESULT * arg1)
297297
/* list models */
298298
int drv_BW_list(void)
299299
{
300-
printf("generic");
300+
printf("BWCT USB to HD44780 interface");
301301
return 0;
302302
}
303303

drv_Curses.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ static int drv_Curs_keypad(const int num)
276276
/* list models */
277277
int drv_Curs_list(void)
278278
{
279-
printf("any");
279+
printf("pure ncurses based text driver");
280280
return 0;
281281
}
282282

drv_G15.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ static int drv_G15_start(const char *section)
507507
/* list models */
508508
int drv_G15_list(void)
509509
{
510-
printf("generic");
510+
printf("Logitech G-15 / Dell M1730");
511511
return 0;
512512
}
513513

drv_IRLCD.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ static int drv_IRLCD_start(const char *section)
297297
/* list models */
298298
int drv_IRLCD_list(void)
299299
{
300-
printf("generic");
300+
printf("USBtiny LCD controller");
301301
return 0;
302302
}
303303

drv_LCD2USB.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ static void plugin_brightness(RESULT * result, RESULT * arg1)
569569
/* list models */
570570
int drv_L2U_list(void)
571571
{
572-
printf("generic");
572+
printf("USB2LCD display interface");
573573
return 0;
574574
}
575575

drv_LCDLinux.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ static int drv_LL_start(const char *section, const int quiet)
259259
/* list models */
260260
int drv_LL_list(void)
261261
{
262-
printf("generic");
262+
printf("LCD-Linux HD44780 kernel driver");
263263
return 0;
264264
}
265265

drv_LCDTerm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ static int drv_LT_start(const char *section, const int quiet)
186186
/* list models */
187187
int drv_LT_list(void)
188188
{
189-
printf("generic");
189+
printf("LCDTerm serial-to-HD44780 adapter board");
190190
return 0;
191191
}
192192

drv_LEDMatrix.c

+1
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ static int drv_LEDMatrix_start(const char *section)
252252
/* list models */
253253
int drv_LEDMatrix_list(void)
254254
{
255+
printf("LEDMATRIX by Till Harbaum");
255256
return 0;
256257
}
257258

drv_M50530.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ typedef struct {
9595
} MODEL;
9696

9797
static MODEL Models[] = {
98-
{0x01, "generic"},
98+
{0x01, "M50530"},
9999
{0xff, "Unknown"}
100100
};
101101

drv_NULL.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ static int drv_NULL_start(const char *section)
117117
/* list models */
118118
int drv_NULL_list(void)
119119
{
120-
printf("generic");
120+
printf("NULL driver for testing purposes");
121121
return 0;
122122
}
123123

drv_PHAnderson.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ static void plugin_bootscreen(RESULT * result, RESULT * arg1)
313313
/* list models */
314314
int drv_PHAnderson_list(void)
315315
{
316-
printf("generic");
316+
printf("PHAnderson serial-to-HD44780 adapter");
317317
return 0;
318318
}
319319

drv_Pertelian.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ static void plugin_backlight(RESULT * result, RESULT * arg1)
226226
/* list models */
227227
int drv_Pertelian_list(void)
228228
{
229-
printf("generic");
229+
printf("Pertelian X2040 displays");
230230
return 0;
231231
}
232232

drv_Sample.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ static void plugin_contrast(RESULT * result, RESULT * arg1)
408408
/* list models */
409409
int drv_Sample_list(void)
410410
{
411-
printf("generic");
411+
printf("Sample driver");
412412
return 0;
413413
}
414414

drv_T6963.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ typedef struct {
6565
} MODEL;
6666

6767
static MODEL Models[] = {
68-
{0x01, "generic"},
68+
{0x01, "T6963"},
6969
{0xff, "Unknown"}
7070
};
7171

drv_Trefon.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ static void plugin_backlight(RESULT * result, RESULT * arg1)
312312
/* list models */
313313
int drv_TF_list(void)
314314
{
315-
printf("generic");
315+
printf("TREFON USB LCD");
316316
return 0;
317317
}
318318

drv_USBHUB.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* $Id$
22
* $URL$
33
*
4-
* new style driver for USBLCD displays
4+
* driver for USBHUB
55
*
66
* Copyright (C) 2006 Ernst Bachmann <[email protected]>
77
* Copyright (C) 2004,2006 The LCD4Linux Team <[email protected]>
@@ -257,7 +257,7 @@ static int drv_UH_start(const char *section, const __attribute__ ((unused))
257257
/* list models */
258258
int drv_UH_list(void)
259259
{
260-
printf("generic");
260+
printf("USBHUB");
261261
return 0;
262262
}
263263

drv_USBLCD.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ static int drv_UL_start(const char *section, const int quiet)
388388
/* list models */
389389
int drv_UL_list(void)
390390
{
391-
printf("generic");
391+
printf("USBLCD");
392392
return 0;
393393
}
394394

drv_picoLCD.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ static void plugin_gpo(RESULT * result, RESULT * argv[])
381381
/* list models */
382382
int drv_pL_list(void)
383383
{
384-
printf("generic");
384+
printf("picoLCD 20x2 Text LCD");
385385
return 0;
386386
}
387387

drv_ula200.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ static void plugin_backlight(RESULT * result, RESULT * arg1)
670670
*/
671671
int drv_ula200_list(void)
672672
{
673-
printf("generic");
673+
printf("ULA200");
674674
return 0;
675675
}
676676

0 commit comments

Comments
 (0)