mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-13 01:08:50 +00:00
staging: cxt1e1: musycc.c: Return negative error codes
Return negative error codes as is followed in the rest of the kernel. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
360d26e420
commit
b6689c225e
@ -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) &
|
||||
|
Loading…
x
Reference in New Issue
Block a user