Skip to content

Commit cdd1878

Browse files
tiwaigregkh
authored andcommitted
ALSA: vxpocket: Fix invalid endian conversions
commit 3acd3e3bab95ec3622ff98da313290ee823a0f68 upstream. The endian conversions used in vxp_dma_read() and vxp_dma_write() are superfluous and even wrong on big-endian machines, as inw() and outw() already do conversions. Kill them. Cc: <[email protected]> Signed-off-by: Takashi Iwai <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 674ed56 commit cdd1878

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sound/pcmcia/vx/vxp_ops.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ static void vxp_dma_write(struct vx_core *chip, struct snd_pcm_runtime *runtime,
375375
length >>= 1; /* in 16bit words */
376376
/* Transfer using pseudo-dma. */
377377
for (; length > 0; length--) {
378-
outw(cpu_to_le16(*addr), port);
378+
outw(*addr, port);
379379
addr++;
380380
}
381381
addr = (unsigned short *)runtime->dma_area;
@@ -385,7 +385,7 @@ static void vxp_dma_write(struct vx_core *chip, struct snd_pcm_runtime *runtime,
385385
count >>= 1; /* in 16bit words */
386386
/* Transfer using pseudo-dma. */
387387
for (; count > 0; count--) {
388-
outw(cpu_to_le16(*addr), port);
388+
outw(*addr, port);
389389
addr++;
390390
}
391391
vx_release_pseudo_dma(chip);
@@ -417,20 +417,20 @@ static void vxp_dma_read(struct vx_core *chip, struct snd_pcm_runtime *runtime,
417417
length >>= 1; /* in 16bit words */
418418
/* Transfer using pseudo-dma. */
419419
for (; length > 0; length--)
420-
*addr++ = le16_to_cpu(inw(port));
420+
*addr++ = inw(port);
421421
addr = (unsigned short *)runtime->dma_area;
422422
pipe->hw_ptr = 0;
423423
}
424424
pipe->hw_ptr += count;
425425
count >>= 1; /* in 16bit words */
426426
/* Transfer using pseudo-dma. */
427427
for (; count > 1; count--)
428-
*addr++ = le16_to_cpu(inw(port));
428+
*addr++ = inw(port);
429429
/* Disable DMA */
430430
pchip->regDIALOG &= ~VXP_DLG_DMAREAD_SEL_MASK;
431431
vx_outb(chip, DIALOG, pchip->regDIALOG);
432432
/* Read the last word (16 bits) */
433-
*addr = le16_to_cpu(inw(port));
433+
*addr = inw(port);
434434
/* Disable 16-bit accesses */
435435
pchip->regDIALOG &= ~VXP_DLG_DMA16_SEL_MASK;
436436
vx_outb(chip, DIALOG, pchip->regDIALOG);

0 commit comments

Comments
 (0)