1<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>usb_driver_release_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-driver-claim-interface.html" title="usb_driver_claim_interface"><link rel="next" href="API-usb-match-id.html" title="usb_match_id"></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_release_interface</span></th></tr><tr><td width="20%" align="left"><a accesskey="p" href="API-usb-driver-claim-interface.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-match-id.html">Next</a></td></tr></table><hr></div><div class="refentry"><a name="API-usb-driver-release-interface"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>usb_driver_release_interface — 2 unbind a driver from 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">void <b class="fsfunc">usb_driver_release_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><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div></div></div><div class="refsect1"><a name="idp1116330556"></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 unbound 5 </p></dd><dt><span class="term"><em class="parameter"><code>iface</code></em></span></dt><dd><p> 6 the interface from which it will be unbound 7 </p></dd></dl></div></div><div class="refsect1"><a name="idp1116333140"></a><h2>Description</h2><p> 8 This can be used by drivers to release an interface without waiting 9 for their <code class="function">disconnect</code> methods to be called. In typical cases this 10 also causes the driver <code class="function">disconnect</code> method to be called. 11 </p><p> 12 13 This call is synchronous, and may not be used in an interrupt context. 14 Callers must own the device lock, so driver <code class="function">disconnect</code> entries don't 15 need extra locking, but other call contexts may need to explicitly claim 16 that lock. 17</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-driver-claim-interface.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-match-id.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"><span class="phrase">usb_driver_claim_interface</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_match_id</span></td></tr></table></div></body></html> 18