/* * dvb_net.h * * Copyright (C) 2001 Ralph Metzler for convergence integrated media GmbH * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * */ #ifndef _DVB_NET_H_ #define _DVB_NET_H_ #include <linux/module.h> #include <linux/netdevice.h> #include <linux/inetdevice.h> #include <linux/etherdevice.h> #include <linux/skbuff.h> #include "dvbdev.h" #define DVB_NET_DEVICES_MAX 10 #ifdef CONFIG_DVB_NET struct dvb_net { struct dvb_device *dvbdev; struct net_device *device[DVB_NET_DEVICES_MAX]; int state[DVB_NET_DEVICES_MAX]; unsigned int exit:1; struct dmx_demux *demux; struct mutex ioctl_mutex; }; void dvb_net_release(struct dvb_net *); int dvb_net_init(struct dvb_adapter *, struct dvb_net *, struct dmx_demux *); #else struct dvb_net { struct dvb_device *dvbdev; };
static inline void dvb_net_release(struct dvb_net *dvbnet) { }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Hans Petter Selasky | 10 | 90.91% | 1 | 50.00% |
Mauro Carvalho Chehab | 1 | 9.09% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Hans Petter Selasky | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Alan Cox | 75 | 50.68% | 3 | 30.00% |
Hans Petter Selasky | 51 | 34.46% | 1 | 10.00% |
Markus Rechberger | 6 | 4.05% | 1 | 10.00% |
Michael Hunold | 6 | 4.05% | 2 | 20.00% |
Mauro Carvalho Chehab | 5 | 3.38% | 1 | 10.00% |
Nikolaus Schulz | 4 | 2.70% | 1 | 10.00% |
Sakari Ailus | 1 | 0.68% | 1 | 10.00% |
Total | 148 | 100.00% | 10 | 100.00% |