Commit 597a107b authored by Martin Bachem's avatar Martin Bachem Committed by Linus Torvalds

[PATCH] i4l: update hfc_usb driver

  - cleanup source
  - remove nonfunctional code parts
Signed-off-by: default avatarKarsten Keil <kkeil@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 6978bbc0
This diff is collapsed.
/* /*
* hfc_usb.h * hfc_usb.h
* *
* $Id: hfc_usb.h,v 4.1 2005/01/26 17:25:53 martinb1 Exp $ * $Id: hfc_usb.h,v 4.2 2005/04/07 15:27:17 martinb1 Exp $
*/ */
#ifndef __HFC_USB_H__ #ifndef __HFC_USB_H__
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
/**********/ /**********/
/* macros */ /* macros */
/**********/ /**********/
#define write_usb(a,b,c)usb_control_msg((a)->dev,(a)->ctrl_out_pipe,0,0x40,(c),(b),0,0,HFC_CTRL_TIMEOUT) #define write_usb(a,b,c)usb_control_msg((a)->dev,(a)->ctrl_out_pipe,0,0x40,(c),(b),NULL,0,HFC_CTRL_TIMEOUT)
#define read_usb(a,b,c) usb_control_msg((a)->dev,(a)->ctrl_in_pipe,1,0xC0,0,(b),(c),1,HFC_CTRL_TIMEOUT) #define read_usb(a,b,c) usb_control_msg((a)->dev,(a)->ctrl_in_pipe,1,0xC0,0,(b),(c),1,HFC_CTRL_TIMEOUT)
...@@ -186,6 +186,7 @@ static int validconf[][19] = { ...@@ -186,6 +186,7 @@ static int validconf[][19] = {
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} // EOL element {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} // EOL element
}; };
#ifdef CONFIG_HISAX_DEBUG
// string description of chosen config // string description of chosen config
static char *conf_str[] = { static char *conf_str[] = {
"4 Interrupt IN + 3 Isochron OUT", "4 Interrupt IN + 3 Isochron OUT",
...@@ -193,6 +194,7 @@ static char *conf_str[] = { ...@@ -193,6 +194,7 @@ static char *conf_str[] = {
"4 Isochron IN + 3 Isochron OUT", "4 Isochron IN + 3 Isochron OUT",
"3 Isochron IN + 3 Isochron OUT" "3 Isochron IN + 3 Isochron OUT"
}; };
#endif
typedef struct { typedef struct {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment