Skip to content

Commit

Permalink
pktcdvd: convert pr_info to pkt_info
Browse files Browse the repository at this point in the history
Add a new pkt_info macro to prefix the name to the logging output.

Signed-off-by: Joe Perches <[email protected]>
Cc: Jiri Kosina <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
JoePerches authored and torvalds committed Sep 11, 2013
1 parent ca73dab commit 0c075d6
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions drivers/block/pktcdvd.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@
pr_err("%s: " fmt, pd->name, ##__VA_ARGS__)
#define pkt_notice(pd, fmt, ...) \
pr_notice("%s: " fmt, pd->name, ##__VA_ARGS__)
#define pkt_info(pd, fmt, ...) \
pr_info("%s: " fmt, pd->name, ##__VA_ARGS__)

#define pkt_dbg(level, pd, fmt, ...) \
do { \
Expand Down Expand Up @@ -1561,10 +1563,10 @@ static int kcdrwd(void *foobar)

static void pkt_print_settings(struct pktcdvd_device *pd)
{
pr_info("%s packets, %u blocks, Mode-%c disc\n",
pd->settings.fp ? "Fixed" : "Variable",
pd->settings.size >> 2,
pd->settings.block_mode == 8 ? '1' : '2');
pkt_info(pd, "%s packets, %u blocks, Mode-%c disc\n",
pd->settings.fp ? "Fixed" : "Variable",
pd->settings.size >> 2,
pd->settings.block_mode == 8 ? '1' : '2');
}

static int pkt_mode_sense(struct pktcdvd_device *pd, struct packet_command *cgc, int page_code, int page_control)
Expand Down Expand Up @@ -2112,7 +2114,7 @@ static noinline_for_stack int pkt_media_speed(struct pktcdvd_device *pd,
return 1;
}
if (*speed) {
pr_info("maximum media speed: %d\n", *speed);
pkt_info(pd, "maximum media speed: %d\n", *speed);
return 0;
} else {
pkt_notice(pd, "unknown speed %d for sub-type %d\n", sp, st);
Expand Down Expand Up @@ -2239,7 +2241,7 @@ static int pkt_open_dev(struct pktcdvd_device *pd, fmode_t write)
ret = -ENOMEM;
goto out_putdev;
}
pr_info("%lukB available on disc\n", lba << 1);
pkt_info(pd, "%lukB available on disc\n", lba << 1);
}

return 0;
Expand Down

0 comments on commit 0c075d6

Please sign in to comment.