Changed to use IICBUS_REPEATED_START

Submitted by:	Changed to use IICBUS_REPEATED_START
This commit is contained in:
Roger Hardiman 1999-02-06 10:56:09 +00:00
parent 2507948408
commit 9864d54a58
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=43714

View file

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: iiconf.c,v 1.4 1999/01/09 18:08:24 nsouch Exp $ * $Id: iiconf.c,v 1.5 1999/01/28 15:59:15 roger Exp $
* *
*/ */
#include <sys/param.h> #include <sys/param.h>
@ -209,7 +209,7 @@ iicbus_repeated_start(device_t bus, u_char slave, int timeout)
if (!sc->started) if (!sc->started)
return (EINVAL); /* bus should have been already started */ return (EINVAL); /* bus should have been already started */
if (!(error = IICBUS_START(device_get_parent(bus), slave, timeout))) if (!(error = IICBUS_REPEATED_START(device_get_parent(bus), slave, timeout)))
sc->started = slave; sc->started = slave;
else else
sc->started = 0; sc->started = 0;