forked from Minki/linux
c078a4aac2
The driver version string was removed in an ealier commit for being useless. These are equally useless. Signed-off-by: Chris Rorvick <chris@rorvick.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
28 lines
694 B
C
28 lines
694 B
C
/*
|
|
* Line 6 Linux USB driver
|
|
*
|
|
* Copyright (C) 2005-2008 Markus Grabner (grabner@icg.tugraz.at)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation, version 2.
|
|
*
|
|
*/
|
|
|
|
#ifndef USBDEFS_H
|
|
#define USBDEFS_H
|
|
|
|
#define USB_INTERVALS_PER_SECOND 1000
|
|
|
|
/* device supports settings parameter via USB */
|
|
#define LINE6_CAP_CONTROL (1 << 0)
|
|
/* device supports PCM input/output via USB */
|
|
#define LINE6_CAP_PCM (1 << 1)
|
|
/* device support hardware monitoring */
|
|
#define LINE6_CAP_HWMON (1 << 2)
|
|
|
|
#define LINE6_FALLBACK_INTERVAL 10
|
|
#define LINE6_FALLBACK_MAXPACKETSIZE 16
|
|
|
|
#endif
|