forked from Minki/linux
V4L/DVB (9304): dsbr100: CodingStyle issue
Fixed few coding style issues in dsbr100 Signed-off-by: Alexey Klimov <klimov.linux@gmail.com> Signed-off-by: Douglas Schilling Landgraf <dougsland@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
448441cf2f
commit
223377e76d
@ -331,8 +331,7 @@ static int vidioc_queryctrl(struct file *file, void *priv,
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(radio_qctrl); i++) {
|
||||
if (qc->id && qc->id == radio_qctrl[i].id) {
|
||||
memcpy(qc, &(radio_qctrl[i]),
|
||||
sizeof(*qc));
|
||||
memcpy(qc, &(radio_qctrl[i]), sizeof(*qc));
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -485,13 +484,20 @@ static int usb_dsbr100_probe(struct usb_interface *intf,
|
||||
{
|
||||
struct dsbr100_device *radio;
|
||||
|
||||
if (!(radio = kmalloc(sizeof(struct dsbr100_device), GFP_KERNEL)))
|
||||
radio = kmalloc(sizeof(struct dsbr100_device), GFP_KERNEL);
|
||||
|
||||
if (!radio)
|
||||
return -ENOMEM;
|
||||
if (!(radio->transfer_buffer = kmalloc(TB_LEN, GFP_KERNEL))) {
|
||||
|
||||
radio->transfer_buffer = kmalloc(TB_LEN, GFP_KERNEL);
|
||||
|
||||
if (!(radio->transfer_buffer)) {
|
||||
kfree(radio);
|
||||
return -ENOMEM;
|
||||
}
|
||||
if (!(radio->videodev = video_device_alloc())) {
|
||||
radio->videodev = video_device_alloc();
|
||||
|
||||
if (!(radio->videodev)) {
|
||||
kfree(radio->transfer_buffer);
|
||||
kfree(radio);
|
||||
return -ENOMEM;
|
||||
|
Loading…
Reference in New Issue
Block a user