1<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>usb_driver_claim_interface</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="The Linux-USB Host Side API"><link rel="up" href="usbcore.html" title="Chapter 5. USB Core APIs"><link rel="prev" href="API-usb-deregister-dev.html" title="usb_deregister_dev"><link rel="next" href="API-usb-driver-release-interface.html" title="usb_driver_release_interface"></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">usb_driver_claim_interface</span></th></tr><tr><td width="20%" align="left"><a accesskey="p" href="API-usb-deregister-dev.html">Prev</a> </td><th width="60%" align="center">Chapter 5. USB Core APIs</th><td width="20%" align="right"> <a accesskey="n" href="API-usb-driver-release-interface.html">Next</a></td></tr></table><hr></div><div class="refentry"><a name="API-usb-driver-claim-interface"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>usb_driver_claim_interface — 2 bind a driver to an interface 3 </p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><div class="funcsynopsis"><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">int <b class="fsfunc">usb_driver_claim_interface </b>(</code></td><td>struct usb_driver * <var class="pdparam">driver</var>, </td></tr><tr><td> </td><td>struct usb_interface * <var class="pdparam">iface</var>, </td></tr><tr><td> </td><td>void * <var class="pdparam">priv</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div></div></div><div class="refsect1"><a name="idp1116319348"></a><h2>Arguments</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="parameter"><code>driver</code></em></span></dt><dd><p> 4 the driver to be bound 5 </p></dd><dt><span class="term"><em class="parameter"><code>iface</code></em></span></dt><dd><p> 6 the interface to which it will be bound; must be in the 7 usb device's active configuration 8 </p></dd><dt><span class="term"><em class="parameter"><code>priv</code></em></span></dt><dd><p> 9 driver data associated with that interface 10 </p></dd></dl></div></div><div class="refsect1"><a name="idp1116322996"></a><h2>Description</h2><p> 11 This is used by usb device drivers that need to claim more than one 12 interface on a device when probing (audio and acm are current examples). 13 No device driver should directly modify internal usb_interface or 14 usb_device structure members. 15 </p><p> 16 17 Few drivers should need to use this routine, since the most natural 18 way to bind to an interface is to return the private data from 19 the driver's <code class="function">probe</code> method. 20 </p><p> 21 22 Callers must own the device lock, so driver <code class="function">probe</code> entries don't need 23 extra locking, but other call contexts may need to explicitly claim that 24 lock. 25</p></div><div class="refsect1"><a name="idp1116325044"></a><h2>Return</h2><p> 26 0 on success. 27</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="API-usb-deregister-dev.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="usbcore.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="API-usb-driver-release-interface.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"><span class="phrase">usb_deregister_dev</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">usb_driver_release_interface</span></td></tr></table></div></body></html> 28