[media] dvb_net: add support for DVB net node at the media controller
Make the dvb core network support aware of the media controller and register the corresponding devices. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
738a1b1e13
commit
e3d65c33e3
|
@ -1462,14 +1462,16 @@ static const struct file_operations dvb_net_fops = {
|
|||
.llseek = noop_llseek,
|
||||
};
|
||||
|
||||
static struct dvb_device dvbdev_net = {
|
||||
static const struct dvb_device dvbdev_net = {
|
||||
.priv = NULL,
|
||||
.users = 1,
|
||||
.writers = 1,
|
||||
#if defined(CONFIG_MEDIA_CONTROLLER_DVB)
|
||||
.name = "dvb net",
|
||||
#endif
|
||||
.fops = &dvb_net_fops,
|
||||
};
|
||||
|
||||
|
||||
void dvb_net_release (struct dvb_net *dvbnet)
|
||||
{
|
||||
int i;
|
||||
|
|
Loading…
Reference in New Issue