Omit an extra message for a memory allocation failure in this function.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
        /* Allocate Port Struct */
        hsdevp = kzalloc(sizeof(*hsdevp), GFP_KERNEL);
        if (!hsdevp) {
-               dev_err(ap->dev, "%s: kmalloc failed for hsdevp\n", __func__);
                err = -ENOMEM;
                goto CLEANUP;
        }