This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:

Subject: libdvbv5: re-add dvb_dev_seek_by_sysname symbol for SONAME 
compatibility
Author:  Gregor Jasny <[email protected]>
Date:    Wed Dec 27 17:36:22 2017 +0100

(cherry picked from commit bb44a0e765e08e5c428e18d6b54cef46c85f2bbe)

 lib/libdvbv5/compat-soname.c | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

---

http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=1384dfa49847ffdff0172a1c5ed9e23fec29ee24
diff --git a/lib/libdvbv5/compat-soname.c b/lib/libdvbv5/compat-soname.c
index 7b742d49bc70..495541a0a753 100644
--- a/lib/libdvbv5/compat-soname.c
+++ b/lib/libdvbv5/compat-soname.c
@@ -19,6 +19,9 @@
 
 #include <libdvbv5/descriptors.h>
 #include <libdvbv5/dvb-fe.h>
+#include <libdvbv5/dvb-dev.h>
+
+struct dvb_device_priv;
 
 int dvb_desc_service_location_init(struct dvb_v5_fe_parms *parms, const 
uint8_t *buf, struct dvb_desc *desc)
 {
@@ -41,3 +44,37 @@ int dvb_desc_service_list_init(struct dvb_v5_fe_parms 
*parms, const uint8_t *buf
 void dvb_desc_service_list_print(struct dvb_v5_fe_parms *parms, const struct 
dvb_desc *desc)
 {
 }
+
+struct dvb_dev_list *dvb_dev_seek_by_sysname(struct dvb_device *d,
+                                             unsigned int adapter,
+                                             unsigned int num,
+                                             enum dvb_dev_type type)
+{
+       return dvb_dev_seek_by_adapter(d, adapter, num, type);
+}
+
+struct dvb_dev_list *dvb_local_seek_by_adapter(struct dvb_device_priv *dvb,
+                                               unsigned int adapter,
+                                               unsigned int num,
+                                               enum dvb_dev_type type);
+
+struct dvb_dev_list *dvb_local_seek_by_sysname(struct dvb_device_priv *dvb,
+                                               unsigned int adapter,
+                                               unsigned int num,
+                                               enum dvb_dev_type type)
+{
+       return dvb_local_seek_by_adapter(dvb, adapter, num, type);
+}
+
+struct dvb_dev_list *dvb_remote_seek_by_adapter(struct dvb_device_priv *dvb,
+                                                unsigned int adapter,
+                                                unsigned int num,
+                                               enum dvb_dev_type type);
+
+struct dvb_dev_list *dvb_remote_seek_by_sysname(struct dvb_device_priv *dvb,
+                                                unsigned int adapter,
+                                                unsigned int num,
+                                                enum dvb_dev_type type)
+{
+       return dvb_remote_seek_by_adapter(dvb, adapter, num, type);
+}

_______________________________________________
linuxtv-commits mailing list
[email protected]
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to