/* #define DEBUG */
 
-#define pr_fmt(fmt) KBUILD_BASENAME ": " fmt
-
 #include <linux/input.h>
 #include <linux/module.h>
 #include <linux/mutex.h>
 
        if (effect->type < FF_EFFECT_MIN || effect->type > FF_EFFECT_MAX ||
            !test_bit(effect->type, dev->ffbit)) {
-               pr_debug("invalid or not supported effect type in upload\n");
+               dev_dbg(&dev->dev, "invalid or not supported effect type in upload\n");
                return -EINVAL;
        }
 
            (effect->u.periodic.waveform < FF_WAVEFORM_MIN ||
             effect->u.periodic.waveform > FF_WAVEFORM_MAX ||
             !test_bit(effect->u.periodic.waveform, dev->ffbit))) {
-               pr_debug("invalid or not supported wave form in upload\n");
+               dev_dbg(&dev->dev, "invalid or not supported wave form in upload\n");
                return -EINVAL;
        }
 
        struct ff_device *ff = dev->ff;
        int i;
 
-       pr_debug("flushing now\n");
+       dev_dbg(&dev->dev, "flushing now\n");
 
        mutex_lock(&ff->mutex);
 
        int i;
 
        if (!max_effects) {
-               pr_err("cannot allocate device without any effects\n");
+               dev_err(&dev->dev, "cannot allocate device without any effects\n");
                return -EINVAL;
        }