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 {                                                                   \
 
 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)
                        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);
                        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;