2002-08-29 19:25:40

by Paul Larson

[permalink] [raw]
Subject: [TRIVIAL][PATCH] fix __FUNCTION__ pasting in iucv.c

Trivial fix for __FUNCTION__ pasting in iucv.c against current bk tree.

-Paul Larson


# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.554 -> 1.555
# drivers/s390/net/iucv.c 1.11 -> 1.12
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/08/29 [email protected] 1.555
# fix __FUNCTION__ pasting in iucv.c
# --------------------------------------------
#
diff -Nru a/drivers/s390/net/iucv.c b/drivers/s390/net/iucv.c
--- a/drivers/s390/net/iucv.c Thu Aug 29 14:58:56 2002
+++ b/drivers/s390/net/iucv.c Thu Aug 29 14:58:56 2002
@@ -302,7 +302,7 @@
if (debuglevel < 3)
return;

- printk(KERN_DEBUG __FUNCTION__ ": %s\n", title);
+ printk(KERN_DEBUG "%s: %s\n", __FUNCTION__, title);
printk(" ");
for (i = 0; i < len; i++) {
if (!(i % 16) && i != 0)
@@ -318,7 +318,7 @@
#define iucv_debug(lvl, fmt, args...) \
do { \
if (debuglevel >= lvl) \
- printk(KERN_DEBUG __FUNCTION__ ": " fmt "\n" , ## args); \
+ printk(KERN_DEBUG "%s: " fmt "\n" , __FUNCTION__, ## args); \
} while (0)

#else