Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8364
b: refs/heads/master
c: dfc866e
h: refs/heads/master
v: v3
  • Loading branch information
Alexey Dobriyan authored and Linus Torvalds committed Sep 10, 2005
1 parent 26689d1 commit 4c3312b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 31bbf8f5d55c706f2e429f7cfa7b339a332e785e
refs/heads/master: dfc866e5059561cc79a0cc1c68ff1492f4c78508
14 changes: 7 additions & 7 deletions trunk/sound/isa/sb/sb16_csp.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,20 @@ MODULE_LICENSE("GPL");
/*
* RIFF data format
*/
typedef struct riff_header {
struct riff_header {
__u32 name;
__u32 len;
} riff_header_t;
};

typedef struct desc_header {
riff_header_t info;
struct desc_header {
struct riff_header info;
__u16 func_nr;
__u16 VOC_type;
__u16 flags_play_rec;
__u16 flags_16bit_8bit;
__u16 flags_stereo_mono;
__u16 flags_rates;
} desc_header_t;
};

/*
* prototypes
Expand Down Expand Up @@ -300,9 +300,9 @@ static int snd_sb_csp_riff_load(snd_sb_csp_t * p, snd_sb_csp_microcode_t __user
unsigned char __user *data_end;
unsigned short func_nr = 0;

riff_header_t file_h, item_h, code_h;
struct riff_header file_h, item_h, code_h;
__u32 item_type;
desc_header_t funcdesc_h;
struct desc_header funcdesc_h;

unsigned long flags;
int err;
Expand Down

0 comments on commit 4c3312b

Please sign in to comment.