1<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>struct dvb_adapter</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="Linux Device Drivers"><link rel="up" href="ch06s02.html" title="Digital TV (DVB) devices"><link rel="prev" href="API-dvb-ringbuffer-pkt-next.html" title="dvb_ringbuffer_pkt_next"><link rel="next" href="API-struct-dvb-device.html" title="struct dvb_device"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center"><span class="phrase">struct dvb_adapter</span></th></tr><tr><td width="20%" align="left"><a accesskey="p" href="API-dvb-ringbuffer-pkt-next.html">Prev</a> </td><th width="60%" align="center">Digital TV (DVB) devices</th><td width="20%" align="right"> <a accesskey="n" href="API-struct-dvb-device.html">Next</a></td></tr></table><hr></div><div class="refentry"><a name="API-struct-dvb-adapter"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>struct dvb_adapter — 2 represents a Digital TV adapter using Linux DVB API 3 </p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="programlisting"> 4struct dvb_adapter { 5 int num; 6 struct list_head list_head; 7 struct list_head device_list; 8 const char * name; 9 u8 proposed_mac[6]; 10 void * priv; 11 struct device * device; 12 struct module * module; 13 int mfe_shared; 14 struct dvb_device * mfe_dvbdev; 15 struct mutex mfe_lock; 16#if defined(CONFIG_MEDIA_CONTROLLER_DVB) 17 struct media_device * mdev; 18#endif 19}; </pre></div><div class="refsect1"><a name="id-1.8.3.26.5"></a><h2>Members</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term">num</span></dt><dd><p> 20Number of the adapter 21 </p></dd><dt><span class="term">list_head</span></dt><dd><p> 22List with the DVB adapters 23 </p></dd><dt><span class="term">device_list</span></dt><dd><p> 24List with the DVB devices 25 </p></dd><dt><span class="term">name</span></dt><dd><p> 26Name of the adapter 27 </p></dd><dt><span class="term">proposed_mac[6]</span></dt><dd><p> 28proposed MAC address for the adapter 29 </p></dd><dt><span class="term">priv</span></dt><dd><p> 30private data 31 </p></dd><dt><span class="term">device</span></dt><dd><p> 32pointer to struct device 33 </p></dd><dt><span class="term">module</span></dt><dd><p> 34pointer to struct module 35 </p></dd><dt><span class="term">mfe_shared</span></dt><dd><p> 36mfe shared: indicates mutually exclusive frontends 37Thie usage of this flag is currently deprecated 38 </p></dd><dt><span class="term">mfe_dvbdev</span></dt><dd><p> 39Frontend device in use, in the case of MFE 40 </p></dd><dt><span class="term">mfe_lock</span></dt><dd><p> 41Lock to prevent using the other frontends when MFE is 42used. 43 </p></dd><dt><span class="term">mdev</span></dt><dd><p> 44pointer to struct media_device, used when the media 45controller is used. 46 </p></dd></dl></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="API-dvb-ringbuffer-pkt-next.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch06s02.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="API-struct-dvb-device.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"><span class="phrase">dvb_ringbuffer_pkt_next</span> </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> <span class="phrase">struct dvb_device</span></td></tr></table></div></body></html> 47