Omit an extra message for a memory allocation failure in these functions.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
         * initdata. */
 
        ours = kzalloc(sizeof(*ours), GFP_KERNEL);
-       if (ours == NULL) {
-               pr_err("%s: no memory\n", __func__);
+       if (!ours)
                return -ENOMEM;
-       }
 
        *ours = *board;
        cpu_cur.board = ours;
        size++;
 
        ftab = kzalloc(sizeof(*ftab) * size, GFP_KERNEL);
-       if (!ftab) {
-               pr_err("%s: no memory for tables\n", __func__);
+       if (!ftab)
                return -ENOMEM;
-       }
 
        ftab_size = size;