* [PATCH 19/19] alsa: riptide: fix %d confusingly prefixed with 0x in format strings
@ 2014-08-04 0:21 Hans Wennborg
2014-08-04 7:20 ` Clemens Ladisch
2014-08-04 11:19 ` [alsa-devel] " Takashi Iwai
0 siblings, 2 replies; 3+ messages in thread
From: Hans Wennborg @ 2014-08-04 0:21 UTC (permalink / raw)
To: clemens, alsa-devel, linux-kernel; +Cc: Hans Wennborg
Signed-off-by: Hans Wennborg <hans@hanshq.net>
---
sound/firewire/fireworks/fireworks_proc.c | 4 ++--
sound/pci/riptide/riptide.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sound/firewire/fireworks/fireworks_proc.c b/sound/firewire/fireworks/fireworks_proc.c
index 02bf394..23bb274 100644
--- a/sound/firewire/fireworks/fireworks_proc.c
+++ b/sound/firewire/fireworks/fireworks_proc.c
@@ -64,7 +64,7 @@ proc_read_hwinfo(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
hwinfo->phys_in_grp_count);
for (i = 0; i < hwinfo->phys_in_grp_count; i++) {
snd_iprintf(buffer,
- "phys in grp[0x%d]: type 0x%d, count 0x%x\n",
+ "phys in grp[0x%x]: type 0x%x, count 0x%x\n",
i, hwinfo->phys_out_grps[i].type,
hwinfo->phys_out_grps[i].count);
}
@@ -73,7 +73,7 @@ proc_read_hwinfo(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
hwinfo->phys_out_grp_count);
for (i = 0; i < hwinfo->phys_out_grp_count; i++) {
snd_iprintf(buffer,
- "phys out grps[0x%d]: type 0x%d, count 0x%x\n",
+ "phys out grps[0x%x]: type 0x%x, count 0x%x\n",
i, hwinfo->phys_out_grps[i].type,
hwinfo->phys_out_grps[i].count);
}
diff --git a/sound/pci/riptide/riptide.c b/sound/pci/riptide/riptide.c
index b4a8278..f0315c3 100644
--- a/sound/pci/riptide/riptide.c
+++ b/sound/pci/riptide/riptide.c
@@ -941,7 +941,7 @@ setmixer(struct cmdif *cif, short num, unsigned short rval, unsigned short lval)
union cmdret rptr = CMDRET_ZERO;
int i = 0;
- snd_printdd("sent mixer %d: 0x%d 0x%d\n", num, rval, lval);
+ snd_printdd("sent mixer %d: 0x%x 0x%x\n", num, rval, lval);
do {
SEND_SDGV(cif, num, num, rval, lval);
SEND_RDGV(cif, num, num, &rptr);
@@ -1080,7 +1080,7 @@ getmixer(struct cmdif *cif, short num, unsigned short *rval,
return -EIO;
*rval = rptr.retwords[0];
*lval = rptr.retwords[1];
- snd_printdd("got mixer %d: 0x%d 0x%d\n", num, *rval, *lval);
+ snd_printdd("got mixer %d: 0x%x 0x%x\n", num, *rval, *lval);
return 0;
}
--
2.0.0.526.g5318336
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 19/19] alsa: riptide: fix %d confusingly prefixed with 0x in format strings
2014-08-04 0:21 [PATCH 19/19] alsa: riptide: fix %d confusingly prefixed with 0x in format strings Hans Wennborg
@ 2014-08-04 7:20 ` Clemens Ladisch
2014-08-04 11:19 ` [alsa-devel] " Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: Clemens Ladisch @ 2014-08-04 7:20 UTC (permalink / raw)
To: Hans Wennborg; +Cc: alsa-devel, linux-kernel
Hans Wennborg wrote:
> Signed-off-by: Hans Wennborg <hans@hanshq.net>
> ---
> sound/firewire/fireworks/fireworks_proc.c | 4 ++--
> sound/pci/riptide/riptide.c | 4 ++--
The fireworks patch got split.
Regards,
Clemens
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [alsa-devel] [PATCH 19/19] alsa: riptide: fix %d confusingly prefixed with 0x in format strings
2014-08-04 0:21 [PATCH 19/19] alsa: riptide: fix %d confusingly prefixed with 0x in format strings Hans Wennborg
2014-08-04 7:20 ` Clemens Ladisch
@ 2014-08-04 11:19 ` Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2014-08-04 11:19 UTC (permalink / raw)
To: Hans Wennborg; +Cc: clemens, alsa-devel, linux-kernel
At Sun, 3 Aug 2014 17:21:25 -0700,
Hans Wennborg wrote:
>
> Signed-off-by: Hans Wennborg <hans@hanshq.net>
Applied after ripping out the superfluous fireworks changes.
Takashi
> ---
> sound/firewire/fireworks/fireworks_proc.c | 4 ++--
> sound/pci/riptide/riptide.c | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/sound/firewire/fireworks/fireworks_proc.c b/sound/firewire/fireworks/fireworks_proc.c
> index 02bf394..23bb274 100644
> --- a/sound/firewire/fireworks/fireworks_proc.c
> +++ b/sound/firewire/fireworks/fireworks_proc.c
> @@ -64,7 +64,7 @@ proc_read_hwinfo(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
> hwinfo->phys_in_grp_count);
> for (i = 0; i < hwinfo->phys_in_grp_count; i++) {
> snd_iprintf(buffer,
> - "phys in grp[0x%d]: type 0x%d, count 0x%x\n",
> + "phys in grp[0x%x]: type 0x%x, count 0x%x\n",
> i, hwinfo->phys_out_grps[i].type,
> hwinfo->phys_out_grps[i].count);
> }
> @@ -73,7 +73,7 @@ proc_read_hwinfo(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
> hwinfo->phys_out_grp_count);
> for (i = 0; i < hwinfo->phys_out_grp_count; i++) {
> snd_iprintf(buffer,
> - "phys out grps[0x%d]: type 0x%d, count 0x%x\n",
> + "phys out grps[0x%x]: type 0x%x, count 0x%x\n",
> i, hwinfo->phys_out_grps[i].type,
> hwinfo->phys_out_grps[i].count);
> }
> diff --git a/sound/pci/riptide/riptide.c b/sound/pci/riptide/riptide.c
> index b4a8278..f0315c3 100644
> --- a/sound/pci/riptide/riptide.c
> +++ b/sound/pci/riptide/riptide.c
> @@ -941,7 +941,7 @@ setmixer(struct cmdif *cif, short num, unsigned short rval, unsigned short lval)
> union cmdret rptr = CMDRET_ZERO;
> int i = 0;
>
> - snd_printdd("sent mixer %d: 0x%d 0x%d\n", num, rval, lval);
> + snd_printdd("sent mixer %d: 0x%x 0x%x\n", num, rval, lval);
> do {
> SEND_SDGV(cif, num, num, rval, lval);
> SEND_RDGV(cif, num, num, &rptr);
> @@ -1080,7 +1080,7 @@ getmixer(struct cmdif *cif, short num, unsigned short *rval,
> return -EIO;
> *rval = rptr.retwords[0];
> *lval = rptr.retwords[1];
> - snd_printdd("got mixer %d: 0x%d 0x%d\n", num, *rval, *lval);
> + snd_printdd("got mixer %d: 0x%x 0x%x\n", num, *rval, *lval);
> return 0;
> }
>
> --
> 2.0.0.526.g5318336
>
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-08-04 11:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-04 0:21 [PATCH 19/19] alsa: riptide: fix %d confusingly prefixed with 0x in format strings Hans Wennborg
2014-08-04 7:20 ` Clemens Ladisch
2014-08-04 11:19 ` [alsa-devel] " Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).