diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2010-10-01 18:13:41 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-21 07:54:17 -0200 |
commit | abe1def46d84aa27d3f84d729204b162e8c64d76 (patch) | |
tree | 73f4f291a3c68c62162362d677b1c1db09751b0f | |
parent | 11b64d31c00359e2e6fa73b0ae4688663e848765 (diff) | |
download | linux-stable-abe1def46d84aa27d3f84d729204b162e8c64d76.tar.gz linux-stable-abe1def46d84aa27d3f84d729204b162e8c64d76.tar.bz2 linux-stable-abe1def46d84aa27d3f84d729204b162e8c64d76.zip |
[media] drivers/media/video/cx23885/cx23885-core.c: fix cx23885_dev_checkrevision()
It was missing the `break'.
Addresses https://bugzilla.kernel.org/show_bug.cgi?id=18672
Reported-by: Igor <i2g2r2@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Cc: stable@kernel.org
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/video/cx23885/cx23885-core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/video/cx23885/cx23885-core.c b/drivers/media/video/cx23885/cx23885-core.c index 2a34e955dad2..359882419b7f 100644 --- a/drivers/media/video/cx23885/cx23885-core.c +++ b/drivers/media/video/cx23885/cx23885-core.c @@ -815,6 +815,7 @@ static void cx23885_dev_checkrevision(struct cx23885_dev *dev) case 0x0e: /* CX23887-15Z */ dev->hwrevision = 0xc0; + break; case 0x0f: /* CX23887-14Z */ dev->hwrevision = 0xb1; |