Commit 8f1fff07 authored by Aishwarya Pant's avatar Aishwarya Pant Committed by Greg Kroah-Hartman

staging: bcm2835-audio: use conditional only for error case

* Refactor conditional to check if memory allocation has failed and
immediately return (-ENOMEM); if block for success case is removed.

* Return the error value -EBUSY when queue_work() fails.
Signed-off-by: default avatarAishwarya Pant <aishpant@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5e00b258
...@@ -131,77 +131,74 @@ static void my_wq_function(struct work_struct *work) ...@@ -131,77 +131,74 @@ static void my_wq_function(struct work_struct *work)
int bcm2835_audio_start(struct bcm2835_alsa_stream *alsa_stream) int bcm2835_audio_start(struct bcm2835_alsa_stream *alsa_stream)
{ {
int ret = -1;
LOG_DBG(" .. IN\n"); LOG_DBG(" .. IN\n");
if (alsa_stream->my_wq) { if (alsa_stream->my_wq) {
struct bcm2835_audio_work *work; struct bcm2835_audio_work *work;
work = kmalloc(sizeof(*work), GFP_ATOMIC); work = kmalloc(sizeof(*work), GFP_ATOMIC);
/*--- Queue some work (item 1) ---*/ /*--- Queue some work (item 1) ---*/
if (work) { if (!work) {
LOG_ERR(" .. Error: NULL work kmalloc\n");
return -ENOMEM;
}
INIT_WORK(&work->my_work, my_wq_function); INIT_WORK(&work->my_work, my_wq_function);
work->alsa_stream = alsa_stream; work->alsa_stream = alsa_stream;
work->cmd = BCM2835_AUDIO_START; work->cmd = BCM2835_AUDIO_START;
if (queue_work(alsa_stream->my_wq, &work->my_work)) if (!queue_work(alsa_stream->my_wq, &work->my_work)) {
ret = 0; return -EBUSY;
} else {
LOG_ERR(" .. Error: NULL work kmalloc\n");
} }
} }
LOG_DBG(" .. OUT %d\n", ret); LOG_DBG(" .. OUT\n");
return ret; return 0;
} }
int bcm2835_audio_stop(struct bcm2835_alsa_stream *alsa_stream) int bcm2835_audio_stop(struct bcm2835_alsa_stream *alsa_stream)
{ {
int ret = -1;
LOG_DBG(" .. IN\n"); LOG_DBG(" .. IN\n");
if (alsa_stream->my_wq) { if (alsa_stream->my_wq) {
struct bcm2835_audio_work *work; struct bcm2835_audio_work *work;
work = kmalloc(sizeof(*work), GFP_ATOMIC); work = kmalloc(sizeof(*work), GFP_ATOMIC);
/*--- Queue some work (item 1) ---*/ /*--- Queue some work (item 1) ---*/
if (work) { if (!work) {
LOG_ERR(" .. Error: NULL work kmalloc\n");
return -ENOMEM;
}
INIT_WORK(&work->my_work, my_wq_function); INIT_WORK(&work->my_work, my_wq_function);
work->alsa_stream = alsa_stream; work->alsa_stream = alsa_stream;
work->cmd = BCM2835_AUDIO_STOP; work->cmd = BCM2835_AUDIO_STOP;
if (queue_work(alsa_stream->my_wq, &work->my_work)) if (!queue_work(alsa_stream->my_wq, &work->my_work)) {
ret = 0; return -EBUSY;
} else {
LOG_ERR(" .. Error: NULL work kmalloc\n");
} }
} }
LOG_DBG(" .. OUT %d\n", ret); LOG_DBG(" .. OUT\n");
return ret; return 0;
} }
int bcm2835_audio_write(struct bcm2835_alsa_stream *alsa_stream, int bcm2835_audio_write(struct bcm2835_alsa_stream *alsa_stream,
unsigned int count, void *src) unsigned int count, void *src)
{ {
int ret = -1;
LOG_DBG(" .. IN\n"); LOG_DBG(" .. IN\n");
if (alsa_stream->my_wq) { if (alsa_stream->my_wq) {
struct bcm2835_audio_work *work; struct bcm2835_audio_work *work;
work = kmalloc(sizeof(*work), GFP_ATOMIC); work = kmalloc(sizeof(*work), GFP_ATOMIC);
/*--- Queue some work (item 1) ---*/ /*--- Queue some work (item 1) ---*/
if (work) { if (!work) {
LOG_ERR(" .. Error: NULL work kmalloc\n");
return -ENOMEM;
}
INIT_WORK(&work->my_work, my_wq_function); INIT_WORK(&work->my_work, my_wq_function);
work->alsa_stream = alsa_stream; work->alsa_stream = alsa_stream;
work->cmd = BCM2835_AUDIO_WRITE; work->cmd = BCM2835_AUDIO_WRITE;
work->src = src; work->src = src;
work->count = count; work->count = count;
if (queue_work(alsa_stream->my_wq, &work->my_work)) if (!queue_work(alsa_stream->my_wq, &work->my_work)) {
ret = 0; return -EBUSY;
} else {
LOG_ERR(" .. Error: NULL work kmalloc\n");
} }
} }
LOG_DBG(" .. OUT %d\n", ret); LOG_DBG(" .. OUT\n");
return ret; return 0;
} }
static void my_workqueue_init(struct bcm2835_alsa_stream *alsa_stream) static void my_workqueue_init(struct bcm2835_alsa_stream *alsa_stream)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment