~libv4l/libv4l/dev

« back to all changes in this revision

Viewing changes to lib/libdvbv5/compat-soname.c

  • Committer: Gregor Jasny
  • Date: 2014-10-01 08:14:20 UTC
  • Revision ID: git-v1:d852ba552c0ac76396298621843f5a537a33a7fc
libdvbv5: remove service_location descriptor

CC: Andre Roth <neolynx@gmail.com>
Acked-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Signed-off-by: Gregor Jasny <gjasny@googlemail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2013 - Andre Roth <neolynx@gmail.com>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation version 2
 
7
 * of the License.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 * Or, point your browser to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 
18
 *
 
19
 */
 
20
 
 
21
#include <libdvbv5/descriptors.h>
 
22
#include <libdvbv5/dvb-fe.h>
 
23
 
 
24
int dvb_desc_service_location_init(struct dvb_v5_fe_parms *parms, const uint8_t *buf, struct dvb_desc *desc)
 
25
{
 
26
        return -1;
 
27
}
 
28
 
 
29
void dvb_desc_service_location_print(struct dvb_v5_fe_parms *parms, const struct dvb_desc *desc)
 
30
{
 
31
}
 
32
 
 
33
void dvb_desc_service_location_free(struct dvb_desc *desc)
 
34
{
 
35
}
 
36