Deleted Added
full compact
iic.c (39023) iic.c (40782)
1/*-
2 * Copyright (c) 1998 Nicolas Souchu
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1998 Nicolas Souchu
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $Id: iic.c,v 1.2 1998/09/04 17:53:35 nsouch Exp $
26 * $Id: iic.c,v 1.3 1998/09/09 18:57:24 nsouch Exp $
27 *
28 */
29#include <sys/param.h>
30#include <sys/kernel.h>
31#include <sys/systm.h>
32#include <sys/module.h>
33#include <sys/bus.h>
34#include <sys/conf.h>

--- 179 unchanged lines hidden (view full) ---

214 int error;
215 device_t parent = device_get_parent(iicdev);
216
217 if (!sc)
218 return (EINVAL);
219
220 switch (cmd) {
221 case I2CSTART:
27 *
28 */
29#include <sys/param.h>
30#include <sys/kernel.h>
31#include <sys/systm.h>
32#include <sys/module.h>
33#include <sys/bus.h>
34#include <sys/conf.h>

--- 179 unchanged lines hidden (view full) ---

214 int error;
215 device_t parent = device_get_parent(iicdev);
216
217 if (!sc)
218 return (EINVAL);
219
220 switch (cmd) {
221 case I2CSTART:
222 error = iicbus_start(parent, sc->sc_addr);
222 error = iicbus_start(parent, sc->sc_addr, 0);
223 break;
224
225 case I2CSTOP:
226 error = iicbus_stop(parent);
227 break;
228
229 case I2CRSTCARD:
223 break;
224
225 case I2CSTOP:
226 error = iicbus_stop(parent);
227 break;
228
229 case I2CRSTCARD:
230 error = iicbus_reset(parent, 0);
230 error = iicbus_reset(parent, 0, 0, NULL);
231 break;
232
233 default:
234 error = ENODEV;
235 }
236
237 return (error);
238}

--- 19 unchanged lines hidden ---
231 break;
232
233 default:
234 error = ENODEV;
235 }
236
237 return (error);
238}

--- 19 unchanged lines hidden ---