diff options
author | 2019-10-18 11:18:30 +0800 | |
---|---|---|
committer | 2019-10-18 15:00:21 +0200 | |
commit | a7f4a27f2f8858ecb676fa257f190bf488447018 (patch) | |
tree | 481afed6df4347a1ecab4ec34a66b1127997039b /drivers/ide/tx4938ide.c | |
parent | crypto: n2: Use pr_warn instead of pr_warning (diff) | |
download | wireguard-linux-a7f4a27f2f8858ecb676fa257f190bf488447018.tar.xz wireguard-linux-a7f4a27f2f8858ecb676fa257f190bf488447018.zip |
ide: 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/[email protected]
To: [email protected]
Cc: "David S. Miller" <[email protected]>
Signed-off-by: Kefeng Wang <[email protected]>
Reviewed-by: Sergey Senozhatsky <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
Diffstat (limited to 'drivers/ide/tx4938ide.c')
-rw-r--r-- | drivers/ide/tx4938ide.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/tx4938ide.c b/drivers/ide/tx4938ide.c index 40a3f55b08dd..962eb92501b5 100644 --- a/drivers/ide/tx4938ide.c +++ b/drivers/ide/tx4938ide.c @@ -46,7 +46,7 @@ static void tx4938ide_tune_ebusc(unsigned int ebus_ch, while ((shwt * 4 + wt + (wt ? 2 : 3)) * cycle < t->cycle) shwt++; if (shwt > 7) { - pr_warning("tx4938ide: SHWT violation (%d)\n", shwt); + pr_warn("tx4938ide: SHWT violation (%d)\n", shwt); shwt = 7; } pr_debug("tx4938ide: ebus %d, bus cycle %dns, WT %d, SHWT %d\n", |