All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] Missing break statement added in smsdvb-main.c
@ 2013-05-19 13:30 Jakob Normark
  0 siblings, 0 replies; only message in thread
From: Jakob Normark @ 2013-05-19 13:30 UTC (permalink / raw)
  To: Mauro Carvalho Chehab; +Cc: linux-media, linux-kernel, Jakob Normark

Fix missing break that so that n_layers are not accidentally incorrect

Kernel version: v3.10-rc1

Signed-off-by: Jakob Normark <jakobnormark@gmail.com>
---
 drivers/media/common/siano/smsdvb-main.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/media/common/siano/smsdvb-main.c b/drivers/media/common/siano/smsdvb-main.c
index 297f1b2..0862622 100644
--- a/drivers/media/common/siano/smsdvb-main.c
+++ b/drivers/media/common/siano/smsdvb-main.c
@@ -140,6 +140,7 @@ static void smsdvb_stats_not_ready(struct dvb_frontend *fe)
 	case DEVICE_MODE_ISDBT:
 	case DEVICE_MODE_ISDBT_BDA:
 		n_layers = 4;
+		break;
 	default:
 		n_layers = 1;
 	}
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2013-05-19 13:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-19 13:30 [PATCH 1/1] Missing break statement added in smsdvb-main.c Jakob Normark

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.