diff options
Diffstat (limited to 'sound/pci/riptide/riptide.c')
| -rw-r--r-- | sound/pci/riptide/riptide.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/pci/riptide/riptide.c b/sound/pci/riptide/riptide.c index 44f3b48d47b1..23017e3bc76c 100644 --- a/sound/pci/riptide/riptide.c +++ b/sound/pci/riptide/riptide.c @@ -470,10 +470,10 @@ struct snd_riptide {  };  struct sgd {			/* scatter gather desriptor */ -	u32 dwNextLink; -	u32 dwSegPtrPhys; -	u32 dwSegLen; -	u32 dwStat_Ctl; +	__le32 dwNextLink; +	__le32 dwSegPtrPhys; +	__le32 dwSegLen; +	__le32 dwStat_Ctl;  };  struct pcmhw {			/* pcm descriptor */ @@ -1017,7 +1017,7 @@ getsamplerate(struct cmdif *cif, unsigned char *intdec, unsigned int *rate)  static int  setsampleformat(struct cmdif *cif,  		unsigned char mixer, unsigned char id, -		unsigned char channels, unsigned char format) +		unsigned char channels, snd_pcm_format_t format)  {  	unsigned char w, ch, sig, order;  |