* Copyright (C) 2013-2015 Microchip Technology Germany II GmbH & Co. KG
  */
 
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 #include <linux/module.h>
 #include <linux/fs.h>
 #include <linux/usb.h>
  * get_stream_frame_size - calculate frame size of current configuration
  * @cfg: channel configuration
  */
-static unsigned int get_stream_frame_size(struct most_channel_config *cfg)
+static unsigned int get_stream_frame_size(struct most_channel_config *cfg,
+                                         struct device *dev)
 {
        unsigned int frame_size = 0;
        unsigned int sub_size = cfg->subbuffer_size;
 
        if (!sub_size) {
-               pr_warn("Misconfig: Subbuffer size zero.\n");
+               dev_warn(dev, "Misconfig: Subbuffer size zero.\n");
                return frame_size;
        }
        switch (cfg->data_type) {
                break;
        case MOST_CH_SYNC:
                if (cfg->packets_per_xact == 0) {
-                       pr_warn("Misconfig: Packets per XACT zero\n");
+                       dev_warn(dev, "Misconfig: Packets per XACT zero\n");
                        frame_size = 0;
                } else if (cfg->packets_per_xact == 0xFF) {
                        frame_size = (USB_MTU / sub_size) * sub_size;
                }
                break;
        default:
-               pr_warn("Query frame size of non-streaming channel\n");
+               dev_warn(dev, "Query frame size of non-streaming channel\n");
                break;
        }
        return frame_size;
 static int hdm_add_padding(struct most_dev *mdev, int channel, struct mbo *mbo)
 {
        struct most_channel_config *conf = &mdev->conf[channel];
-       unsigned int frame_size = get_stream_frame_size(conf);
+       unsigned int frame_size = get_stream_frame_size(conf, &mdev->dev);
        unsigned int j, num_frames;
 
        if (!frame_size)
                              struct mbo *mbo)
 {
        struct most_channel_config *const conf = &mdev->conf[channel];
-       unsigned int frame_size = get_stream_frame_size(conf);
+       unsigned int frame_size = get_stream_frame_size(conf, &mdev->dev);
        unsigned int j, num_frames;
 
        if (!frame_size)
 
        mdev->padding_active[channel] = true;
 
-       frame_size = get_stream_frame_size(conf);
+       frame_size = get_stream_frame_size(conf, &mdev->dev);
        if (frame_size == 0 || frame_size > USB_MTU) {
                dev_warn(dev, "Misconfig: frame size wrong\n");
                return -EINVAL;