1
0
Fork 0

IB/srp: Avoid problems if a header uses pr_fmt

SRP defines pr_fmt(fmt) to be "PFX fmt", and then includes a bunch of
header files before it gets around to defining PFX.  This causes
problems if any of the header files do a pr_... and use pr_fmt().

Fix this by using KBUILD_MODNAME instead of the private PFX.

Acked-by: Chris Metcalf <cmetcalf@tilera.com>

Signed-off-by: Roland Dreier <roland@purestorage.com>
hifive-unleashed-5.1
Joe Perches 2013-02-01 14:33:58 -08:00 committed by Roland Dreier
parent 5cfb17828d
commit d236cd0e20
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
* SOFTWARE.
*/
#define pr_fmt(fmt) PFX fmt
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h>
#include <linux/init.h>