Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1614349 > unrolled thread
| Started by | Matthias Kaehlcke <mka@chromium.org> |
|---|---|
| First post | 2017-04-01 03:10 +0200 |
| Last post | 2017-04-01 10:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH v2] ALSA: hda/ca0132: Limit values for chip addresses to 32-bit Matthias Kaehlcke <mka@chromium.org> - 2017-04-01 03:10 +0200
Re: [PATCH v2] ALSA: hda/ca0132: Limit values for chip addresses to 32-bit Takashi Iwai <tiwai@suse.de> - 2017-04-01 10:50 +0200
| From | Matthias Kaehlcke <mka@chromium.org> |
|---|---|
| Date | 2017-04-01 03:10 +0200 |
| Subject | [PATCH v2] ALSA: hda/ca0132: Limit values for chip addresses to 32-bit |
| Message-ID | <trfId-3RI-11@gated-at.bofh.it> |
With the previous unsigned long value clang generates warnings like
this:
sound/pci/hda/patch_ca0132.c:860:37: error: implicit conversion from
'unsigned long' to 'u32' (aka 'unsigned int') changes value from
18446744073709551615 to 4294967295 [-Werror,-Wconstant-conversion]
spec->curr_chip_addx = (res < 0) ? ~0UL : chip_addx;
~ ^~~~
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
---
Changes in v2:
- Remove unnecessary cast to u32
sound/pci/hda/patch_ca0132.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sound/pci/hda/patch_ca0132.c b/sound/pci/hda/patch_ca0132.c
index 07a9deb17477..2023fe472be1 100644
--- a/sound/pci/hda/patch_ca0132.c
+++ b/sound/pci/hda/patch_ca0132.c
@@ -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;
}
--
2.12.2.564.g063fe858b8-goog
[toc] | [next] | [standalone]
| From | Takashi Iwai <tiwai@suse.de> |
|---|---|
| Date | 2017-04-01 10:50 +0200 |
| Message-ID | <trmTn-cv-7@gated-at.bofh.it> |
| In reply to | #1614349 |
On Sat, 01 Apr 2017 03:00:04 +0200, Matthias Kaehlcke wrote: > > With the previous unsigned long value clang generates warnings like > this: > > sound/pci/hda/patch_ca0132.c:860:37: error: implicit conversion from > 'unsigned long' to 'u32' (aka 'unsigned int') changes value from > 18446744073709551615 to 4294967295 [-Werror,-Wconstant-conversion] > spec->curr_chip_addx = (res < 0) ? ~0UL : chip_addx; > ~ ^~~~ > > Signed-off-by: Matthias Kaehlcke <mka@chromium.org> Thanks, applied. Takashi > --- > Changes in v2: > - Remove unnecessary cast to u32 > > sound/pci/hda/patch_ca0132.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/sound/pci/hda/patch_ca0132.c b/sound/pci/hda/patch_ca0132.c > index 07a9deb17477..2023fe472be1 100644 > --- a/sound/pci/hda/patch_ca0132.c > +++ b/sound/pci/hda/patch_ca0132.c > @@ -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; > } > > -- > 2.12.2.564.g063fe858b8-goog > >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web