Commit 2d2d5b86 authored by Cristiano Borges Cardoso's avatar Cristiano Borges Cardoso Committed by Greg Kroah-Hartman
Browse files

staging: zoran: fix brace in the wrong line



fix the following error from checkpatch:

ERROR: that open brace { should be on the previous line

Signed-off-by: default avatarCristiano Borges Cardoso <cristianoborgescardoso@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9fc6eeb7
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1146,8 +1146,7 @@ static struct videocodec_master *zoran_setup_videocodec(struct zoran *zr,
	strscpy(m->name, ZR_DEVNAME(zr), sizeof(m->name));
	m->data = zr;

	switch (type)
	{
	switch (type) {
	case CODEC_TYPE_ZR36060:
		m->readreg = zr36060_read;
		m->writereg = zr36060_write;