Changeset 426 for GPL/trunk/alsa-kernel/include/sound/emu10k1.h
- Timestamp:
- May 9, 2009, 11:45:26 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/alsa-kernel/include/sound/emu10k1.h
r399 r426 1 1 #ifndef __SOUND_EMU10K1_H 2 2 #define __SOUND_EMU10K1_H 3 4 #include <linux/types.h> 3 5 4 6 /* … … 35 37 #include <linux/interrupt.h> 36 38 #include <linux/mutex.h> 39 37 40 #include <asm/io.h> 38 41 … … 2172 2175 2173 2176 DECLARE_BITMAP(gpr_valid, 0x200); /* bitmask of valid initializers */ 2174 u_int32_t __user *gpr_map;/* initializers */2177 __u32 __user *gpr_map; /* initializers */ 2175 2178 2176 2179 unsigned int gpr_add_control_count; /* count of GPR controls to add/replace */ … … 2185 2188 2186 2189 DECLARE_BITMAP(tram_valid, 0x100); /* bitmask of valid initializers */ 2187 u_int32_t __user *tram_data_map;/* data initializers */2188 u_int32_t __user *tram_addr_map;/* map initializers */2190 __u32 __user *tram_data_map; /* data initializers */ 2191 __u32 __user *tram_addr_map; /* map initializers */ 2189 2192 2190 2193 DECLARE_BITMAP(code_valid, 1024); /* bitmask of valid instructions */ 2191 u_int32_t__user *code; /* one instruction - 64 bits */2194 __u32 __user *code; /* one instruction - 64 bits */ 2192 2195 }; 2193 2196
Note:
See TracChangeset
for help on using the changeset viewer.