diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-12-14 12:28:26 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-01-07 10:36:21 +0100 |
commit | b9f63b25954495b5b3089f89918771e52c1605d8 (patch) | |
tree | 03367023f6856daa83c61444fc569e7b0b8982ed /drivers/media/pci/saa7134/saa7134.h | |
parent | [media] saa7134: cleanup radio/video/empress ioctl handling (diff) | |
download | linux-b9f63b25954495b5b3089f89918771e52c1605d8.tar.xz linux-b9f63b25954495b5b3089f89918771e52c1605d8.zip |
[media] saa7134: remove dev from saa7134_fh, use saa7134_fh for empress node
Use the saa7134_fh struct for the empress video node as well, drop the dev
pointer from that struct since we can use drvdata for that.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/pci/saa7134/saa7134.h')
-rw-r--r-- | drivers/media/pci/saa7134/saa7134.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/saa7134/saa7134.h b/drivers/media/pci/saa7134/saa7134.h index 3573aa2f258f..d7bef5e292b4 100644 --- a/drivers/media/pci/saa7134/saa7134.h +++ b/drivers/media/pci/saa7134/saa7134.h @@ -476,7 +476,7 @@ struct saa7134_dmaqueue { /* video filehandle status */ struct saa7134_fh { struct v4l2_fh fh; - struct saa7134_dev *dev; + bool is_empress; unsigned int resources; }; |