|
@@ -857,7 +857,7 @@ static int chipio_write_address(struct hda_codec *codec,
|
|
|
chip_addx >> 16);
|
|
|
}
|
|
|
|
|
|
- spec->curr_chip_addx = (res < 0) ? ~0UL : chip_addx;
|
|
|
+ spec->curr_chip_addx = (res < 0) ? ~0U : chip_addx;
|
|
|
|
|
|
return res;
|
|
|
}
|
|
@@ -882,7 +882,7 @@ static int chipio_write_data(struct hda_codec *codec, unsigned int data)
|
|
|
/*If no error encountered, automatically increment the address
|
|
|
as per chip behaviour*/
|
|
|
spec->curr_chip_addx = (res != -EIO) ?
|
|
|
- (spec->curr_chip_addx + 4) : ~0UL;
|
|
|
+ (spec->curr_chip_addx + 4) : ~0U;
|
|
|
return res;
|
|
|
}
|
|
|
|
|
@@ -933,7 +933,7 @@ static int chipio_read_data(struct hda_codec *codec, unsigned int *data)
|
|
|
/*If no error encountered, automatically increment the address
|
|
|
as per chip behaviour*/
|
|
|
spec->curr_chip_addx = (res != -EIO) ?
|
|
|
- (spec->curr_chip_addx + 4) : ~0UL;
|
|
|
+ (spec->curr_chip_addx + 4) : ~0U;
|
|
|
return res;
|
|
|
}
|
|
|
|