diff options
author | Mike Isely <isely@pobox.com> | 2006-12-27 20:07:58 -0600 |
---|---|---|
committer | Mike Isely <isely@pobox.com> | 2006-12-27 20:07:58 -0600 |
commit | d33eaf58a160d1bf2e2d8fdb593c76d02e56bb2a (patch) | |
tree | 9819f462f0b98c95a4b818f40cd672bca1bceca7 /linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h | |
parent | 07c2e5338998bde7ba3bfd338813a5a4dacf430f (diff) | |
download | mediapointer-dvb-s2-d33eaf58a160d1bf2e2d8fdb593c76d02e56bb2a.tar.gz mediapointer-dvb-s2-d33eaf58a160d1bf2e2d8fdb593c76d02e56bb2a.tar.bz2 |
pvrusb2: Implement multiple minor device number handling
From: Pantelis Koukousoulas <pakt223@freemail.gr>
This is the first patch in preparation of the V4L2/IVTV radio interface.
It does away with the assumption of only one minor per device. It also
adds a file to show the radio minor as well. This can be useful for a
program like pvr-radio.c (when it grows up), since this way it can search
for the minor of the /dev/radioX device it opened and use the video minor
of the same driver instance to get to the actual stream.
The implementation looks kinda ugly. Feel free to improve (that is the
reason behind separate patches anyway).
--Pantelis
Signed-off-by: Pantelis Koukousoulas <pakt223@freemail.gr>
Signed-off-by: Mike Isely <isely@pobox.com>
Diffstat (limited to 'linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h')
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h index 5193863b6..97db29224 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h @@ -214,11 +214,11 @@ int pvr2_hdw_cpufw_get_enabled(struct pvr2_hdw *); int pvr2_hdw_cpufw_get(struct pvr2_hdw *,unsigned int offs, char *buf,unsigned int cnt); -/* Retrieve previously stored v4l minor device number */ -int pvr2_hdw_v4l_get_minor_number(struct pvr2_hdw *); +/* Retrieve a previously stored v4l minor device number */ +int pvr2_hdw_v4l_get_minor_number(struct pvr2_hdw *,int); -/* Store the v4l minor device number */ -void pvr2_hdw_v4l_store_minor_number(struct pvr2_hdw *,int); +/* Store a v4l minor device number */ +void pvr2_hdw_v4l_store_minor_number(struct pvr2_hdw *,int,int); /* Direct read/write access to chip's registers: chip_id - unique id of chip (e.g. I2C_DRIVERD_xxxx) |