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:
Sachin Kamat 2013-09-27 09:36:36 +05:30 committed by Greg Kroah-Hartman
parent 360d26e420
commit b6689c225e
1 changed files with 2 additions and 2 deletions

View File

@ -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) &