~siretart/lcd4linux/debian

« back to all changes in this revision

Viewing changes to drv_USBHUB.c

  • Committer: Reinhard Tartler
  • Date: 2011-04-27 17:28:49 UTC
  • mfrom: (0.1.1 upstream)
  • Revision ID: siretart@tauware.de-20110427172849-mj5cj5a0igpcc9fn
New upstream snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: drv_USBHUB.c 773 2007-02-25 12:39:09Z michael $
2
 
 * $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv_USBHUB.c $
 
1
/* $Id: drv_USBHUB.c 1126 2010-07-13 03:25:44Z michael $
 
2
 * $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/drv_USBHUB.c $
3
3
 *
4
 
 * new style driver for USBLCD displays
 
4
 * driver for USBHUB
5
5
 *
6
6
 * Copyright (C) 2006 Ernst Bachmann <e.bachmann@xebec.de>
7
7
 * Copyright (C) 2004,2006 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
8
8
 *
9
 
 * Based on the USBLCD driver Copyright (C) 2003 Michael Reinelt <reinelt@eunet.at>
 
9
 * Based on the USBLCD driver Copyright (C) 2003 Michael Reinelt <michael@reinelt.co.at>
10
10
 *
11
11
 * This file is part of LCD4Linux.
12
12
 *
37
37
#include "config.h"
38
38
 
39
39
#ifdef HAVE_USB_H
40
 
# include <usb.h>
 
40
#include <usb.h>
41
41
#else
42
 
# error The USB-HUB driver only makes sense with USB support
 
42
#error The USB-HUB driver only makes sense with USB support
43
43
#endif
44
44
 
45
45
#include "debug.h"
257
257
/* list models */
258
258
int drv_UH_list(void)
259
259
{
260
 
    printf("generic");
 
260
    printf("USBHUB");
261
261
    return 0;
262
262
}
263
263
 
268
268
    int ret;
269
269
    int i;
270
270
 
271
 
    info("%s: %s", Name, "$Rev: 773 $");
 
271
    info("%s: %s", Name, "$Rev: 1126 $");
272
272
 
273
273
 
274
274