Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6689c22 authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman
Browse files

staging: cxt1e1: musycc.c: Return negative error codes



Return negative error codes as is followed in the rest of the
kernel.

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 360d26e4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -746,7 +746,7 @@ musycc_init(ci_t *ci)

    regaddr = OS_kmalloc((INT_QUEUE_SIZE + 1) * sizeof(u_int32_t));
    if (!regaddr)
	return ENOMEM;
	return -ENOMEM;
    ci->iqd_p_saved = regaddr;      /* save orig value for free's usage */
    ci->iqd_p = (u_int32_t *) ((unsigned long) (regaddr + INT_QUEUE_BOUNDARY - 1) &
			       (~(INT_QUEUE_BOUNDARY - 1)));    /* this calculates
@@ -772,7 +772,7 @@ musycc_init(ci_t *ci)
		OS_kfree(pi->reg);
		pi->reg = NULL;
	    }
	    return ENOMEM;
	    return -ENOMEM;
	}
	pi->regram_saved = regaddr; /* save orig value for free's usage */
	pi->regram = (struct musycc_groupr *) ((unsigned long) (regaddr + GROUP_BOUNDARY - 1) &