diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-01-14 01:22:56 -0600 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-01-14 01:22:56 -0600 |
commit | 3df4ed9fbae7f696ce17ae3d05102465596b7f57 (patch) | |
tree | cd6c33c2db6c123e9805e492cd1e6df017298288 /linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h | |
parent | 5ad26b22e2c8793cd481f3604f1e66d808eb4542 (diff) | |
download | mediapointer-dvb-s2-3df4ed9fbae7f696ce17ae3d05102465596b7f57.tar.gz mediapointer-dvb-s2-3df4ed9fbae7f696ce17ae3d05102465596b7f57.tar.bz2 |
pvrusb2: Generate a device-unique identifier
From: Mike Isely <isely@pobox.com>
Implement a new internal function to create a string device
identifier. This ID stays with the specific device, making it useful
to user space to identify specific devices. We use the serial number
if available; otherwise we give up and just spit out a unit/instance ID.
Priority: normal
Signed-off-by: Mike Isely <isely@pobox.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h')
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h index 732546fa3..025d9fa26 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.h @@ -138,6 +138,9 @@ unsigned long pvr2_hdw_get_sn(struct pvr2_hdw *); /* Retrieve bus location info of device */ const char *pvr2_hdw_get_bus_info(struct pvr2_hdw *); +/* Retrieve per-instance string identifier for this specific device */ +const char *pvr2_hdw_get_device_identifier(struct pvr2_hdw *); + /* Called when hardware has been unplugged */ void pvr2_hdw_disconnect(struct pvr2_hdw *); |