Skip to content

Commit

Permalink
ide serverworks warning fixes
Browse files Browse the repository at this point in the history
gcc-4.3:

drivers/ide/pci/serverworks.c: In function 'svwks_tune_chipset':
drivers/ide/pci/serverworks.c:176: warning: overflow in implicit constant conversion
drivers/ide/pci/serverworks.c:190: warning: overflow in implicit constant conversion
drivers/ide/pci/serverworks.c:211: warning: overflow in implicit constant conversion
drivers/ide/pci/serverworks.c:212: warning: overflow in implicit constant conversion

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
  • Loading branch information
Andrew Morton authored and Bartlomiej Zolnierkiewicz committed May 24, 2007
1 parent 5a6248c commit 585a285
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/ide/pci/serverworks.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ static int svwks_tune_chipset (ide_drive_t *drive, u8 xferspeed)
((dma_stat&(1<<(5+unit)))==(1<<(5+unit)))) {
u8 dmaspeed = dma_timing;

dma_timing &= ~0xFF;
dma_timing &= ~0xFFU;
if ((dmaspeed & 0x20) == 0x20)
dmaspeed = XFER_MW_DMA_2;
else if ((dmaspeed & 0x21) == 0x21)
Expand All @@ -193,7 +193,7 @@ static int svwks_tune_chipset (ide_drive_t *drive, u8 xferspeed)
} else if (pio_timing) {
u8 piospeed = pio_timing;

pio_timing &= ~0xFF;
pio_timing &= ~0xFFU;
if ((piospeed & 0x20) == 0x20)
piospeed = XFER_PIO_4;
else if ((piospeed & 0x22) == 0x22)
Expand All @@ -214,8 +214,8 @@ static int svwks_tune_chipset (ide_drive_t *drive, u8 xferspeed)

oem_setup_failed:

pio_timing &= ~0xFF;
dma_timing &= ~0xFF;
pio_timing &= ~0xFFU;
dma_timing &= ~0xFFU;
ultra_timing &= ~(0x0F << (4*unit));
ultra_enable &= ~(0x01 << drive->dn);
csb5_pio &= ~(0x0F << (4*drive->dn));
Expand Down

0 comments on commit 585a285

Please sign in to comment.