pcmcia: remove KERN_INFO level from debug message
authorColin Ian King <colin.king@canonical.com>
Fri, 17 Jul 2015 10:02:34 +0000 (11:02 +0100)
committerDominik Brodowski <linux@dominikbrodowski.net>
Mon, 1 Oct 2018 10:15:16 +0000 (12:15 +0200)
commitddc9a1d90abedad10d3d1f1bd14b2a6d70f1c9e6
tree9aae8c328cde764faae075301dfa29d6229b4556
parent17b57b1883c1285f3d0dc2266e8f79286a7bef38
pcmcia: remove KERN_INFO level from debug message

The KERN_INFO level is being appended to the "%s:" string in the DEBUGP
macro, so it isn't actually doing what was originally intended and instead
inserts it in the wrong place.  Remove it so it is at least we're using
the DEBUGP macro consistently throughout the driver and we're not going
to lose any functionality in message level with change anyhow.

Caught by smatch static analysis:

  drivers/char/pcmcia/cm4040_cs.c:509 cm4040_reader_release()
     warn: KERN_* level not at start of string

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Cc: Harald Welte <laforge@gnumonks.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
drivers/char/pcmcia/cm4040_cs.c