[PATCH] switch udevd's msg_dump() to #define

Here we switch the msg_dump() to #define instead of commenting it out.
This commit is contained in:
kay.sievers@vrfy.org 2004-04-02 20:10:37 -08:00 committed by Greg KH
parent dd785ba628
commit b6bf0b1236

12
udevd.c
View file

@ -73,6 +73,10 @@ void log_message (int level, const char *format, ...)
}
#endif
#define msg_dump(msg) \
dbg("msg_dump: sequence %d, '%s', '%s', '%s'", \
msg->seqnum, msg->action, msg->devpath, msg->subsystem);
static void msg_dump_queue(void)
{
#ifdef DEBUG
@ -83,14 +87,6 @@ static void msg_dump_queue(void)
#endif
}
#if 0
static void msg_dump(struct hotplug_msg *msg)
{
dbg("sequence %d, '%s', '%s', '%s'",
msg->seqnum, msg->action, msg->devpath, msg->subsystem);
}
#endif
static struct hotplug_msg *msg_create(void)
{
struct hotplug_msg *new_msg;