Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: samsung: Use pr_warn instead of pr_warning

As said in commit f2c2cbcc35d4 ("powerpc: Use pr_warn instead of
pr_warning"), removing pr_warning so all logging messages use a
consistent <prefix>_warn style. Let's do it.

Link: http://lkml.kernel.org/r/20191018031850.48498-28-wangkefeng.wang@huawei.com
To: linux-kernel@vger.kernel.org
Cc: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Sangbeom Kim <sbkim73@samsung.com>
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
Cc: Jaroslav Kysela <perex@perex.cz>
Cc: Takashi Iwai <tiwai@suse.com>
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>

authored by

Kefeng Wang and committed by
Petr Mladek
2304d447 256339d6

+3 -3
+3 -3
sound/soc/samsung/s3c-i2s-v2.c
··· 672 672 iismod = readl(i2s->regs + S3C2412_IISMOD); 673 673 674 674 if (iismod & S3C2412_IISCON_RXDMA_ACTIVE) 675 - pr_warning("%s: RXDMA active?\n", __func__); 675 + pr_warn("%s: RXDMA active?\n", __func__); 676 676 677 677 if (iismod & S3C2412_IISCON_TXDMA_ACTIVE) 678 - pr_warning("%s: TXDMA active?\n", __func__); 678 + pr_warn("%s: TXDMA active?\n", __func__); 679 679 680 680 if (iismod & S3C2412_IISCON_IIS_ACTIVE) 681 - pr_warning("%s: IIS active\n", __func__); 681 + pr_warn("%s: IIS active\n", __func__); 682 682 } 683 683 684 684 return 0;