diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-12-14 08:28:26 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-01-07 07:36:21 -0200 |
commit | b9f63b25954495b5b3089f89918771e52c1605d8 (patch) | |
tree | 03367023f6856daa83c61444fc569e7b0b8982ed /drivers/media/pci/saa7134/saa7134.h | |
parent | b93a18d56057a6f8ccb79c5cd085dd31395331ff (diff) | |
download | blackbird-op-linux-b9f63b25954495b5b3089f89918771e52c1605d8.tar.gz blackbird-op-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; }; |