Commit 86878827 authored by Timo von Holtz's avatar Timo von Holtz Committed by Greg Kroah-Hartman

Staging: dabusb: fixed coding style issues

Fixed coding style issues
Signed-off-by: default avatarTimo von Holtz <tvh@informatik.uni-kiel.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 046d747e
This diff is collapsed.
#define _BULK_DATA_LEN 64
typedef struct
{
typedef struct {
unsigned char data[_BULK_DATA_LEN];
unsigned int size;
unsigned int pipe;
}bulk_transfer_t,*pbulk_transfer_t;
} bulk_transfer_t, *pbulk_transfer_t;
#define DABUSB_MINOR 240 /* some unassigned USB minor */
#define DABUSB_VERSION 0x1000
......@@ -14,10 +13,9 @@ typedef struct
#ifdef __KERNEL__
typedef enum { _stopped=0, _started } driver_state_t;
typedef enum { _stopped = 0, _started } driver_state_t;
typedef struct
{
typedef struct {
struct mutex mutex;
struct usb_device *usbdev;
wait_queue_head_t wait;
......@@ -34,17 +32,15 @@ typedef struct
int devnum;
struct list_head free_buff_list;
struct list_head rec_buff_list;
} dabusb_t,*pdabusb_t;
} dabusb_t, *pdabusb_t;
typedef struct
{
typedef struct {
pdabusb_t s;
struct urb *purb;
struct list_head buff_list;
} buff_t,*pbuff_t;
} buff_t, *pbuff_t;
typedef struct
{
typedef struct {
wait_queue_head_t wait;
} bulk_completion_context_t, *pbulk_completion_context_t;
......@@ -54,11 +50,11 @@ typedef struct
#define _ISOPIPESIZE 16384
#define _BULK_DATA_LEN 64
// Vendor specific request code for Anchor Upload/Download
// This one is implemented in the core
/* Vendor specific request code for Anchor Upload/Download
*This one is implemented in the core */
#define ANCHOR_LOAD_INTERNAL 0xA0
// EZ-USB Control and Status Register. Bit 0 controls 8051 reset
/* EZ-USB Control and Status Register. Bit 0 controls 8051 reset */
#define CPUCS_REG 0x7F92
#define _TOTAL_BUFFERS 384
......@@ -67,19 +63,18 @@ typedef struct
#ifndef _BYTE_DEFINED
#define _BYTE_DEFINED
typedef unsigned char BYTE;
#endif // !_BYTE_DEFINED
#endif /* !_BYTE_DEFINED */
#ifndef _WORD_DEFINED
#define _WORD_DEFINED
typedef unsigned short WORD;
#endif // !_WORD_DEFINED
#endif /* !_WORD_DEFINED */
typedef struct _INTEL_HEX_RECORD
{
BYTE Length;
WORD Address;
BYTE Type;
BYTE Data[MAX_INTEL_HEX_RECORD_LENGTH];
typedef struct _INTEL_HEX_RECORD {
BYTE Length;
WORD Address;
BYTE Type;
BYTE Data[MAX_INTEL_HEX_RECORD_LENGTH];
} INTEL_HEX_RECORD, *PINTEL_HEX_RECORD;
#endif
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