Message ID | 1438546949.29569.2.camel@perches.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Sun, Aug 02, 2015 at 01:22:29PM -0700, Joe Perches wrote:
> Correct misuse of 0x%d in logging message.
This doesn't apply, please chekc and resend.
On Mon, 2015-08-03 at 17:15 +0100, Mark Brown wrote: > On Sun, Aug 02, 2015 at 01:22:29PM -0700, Joe Perches wrote: > > Correct misuse of 0x%d in logging message. > > This doesn't apply, please chekc and resend. Odd, the diff applies against the latest next-20150803 here. OK, I see what the problem is now. I updated evolution to 3.16 and that's not a good version. It substitutes spaces for tabs when sending text. I'll sort it out and resend later today or you can fix it in the meantime.
diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c index 841d059..ba8def5 100644 --- a/sound/soc/atmel/atmel_ssc_dai.c +++ b/sound/soc/atmel/atmel_ssc_dai.c @@ -290,7 +290,7 @@ static int atmel_ssc_startup(struct snd_pcm_substream *substream, int dir, dir_mask; int ret; - pr_debug("atmel_ssc_startup: SSC_SR=0x%u\n", + pr_debug("atmel_ssc_startup: SSC_SR=0x%x\n", ssc_readl(ssc_p->ssc->regs, SR)); /* Enable PMC peripheral clock for this SSC */
Correct misuse of 0x%d in logging message. Signed-off-by: Joe Perches <joe@perches.com> --- sound/soc/atmel/atmel_ssc_dai.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)