diff --git a/sound/firewire/scs1x.c b/sound/firewire/scs1x.c index 844a555c3b1eb4ab002eb1c33b64f4703f6a3a44..b252c21b6d13b32d1fbc16a4d9894b6995d2dbf0 100644 --- a/sound/firewire/scs1x.c +++ b/sound/firewire/scs1x.c @@ -405,8 +405,10 @@ static int scs_probe(struct device *unit_dev) scs->output_idle = true; scs->buffer = kmalloc(HSS1394_MAX_PACKET_SIZE, GFP_KERNEL); - if (!scs->buffer) + if (!scs->buffer) { + err = -ENOMEM; goto err_card; + } scs->hss_handler.length = HSS1394_MAX_PACKET_SIZE; scs->hss_handler.address_callback = handle_hss;