Deleted Added
full compact
iicbus.h (330897) iicbus.h (331501)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 1998 Nicolas Souchu
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

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

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

20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD: stable/11/sys/dev/iicbus/iicbus.h 330897 2018-03-14 03:19:51Z eadler $
28 * $FreeBSD: stable/11/sys/dev/iicbus/iicbus.h 331501 2018-03-24 22:39:38Z ian $
29 *
30 */
31#ifndef __IICBUS_H
32#define __IICBUS_H
33
34#include <sys/_lock.h>
35#include <sys/_mutex.h>
36

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

72#define IICBUS_UNLOCK(sc) mtx_unlock(&(sc)->lock)
73#define IICBUS_ASSERT_LOCKED(sc) mtx_assert(&(sc)->lock, MA_OWNED)
74
75int iicbus_generic_intr(device_t dev, int event, char *buf);
76void iicbus_init_frequency(device_t dev, u_int bus_freq);
77
78extern driver_t iicbus_driver;
79extern devclass_t iicbus_devclass;
29 *
30 */
31#ifndef __IICBUS_H
32#define __IICBUS_H
33
34#include <sys/_lock.h>
35#include <sys/_mutex.h>
36

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

72#define IICBUS_UNLOCK(sc) mtx_unlock(&(sc)->lock)
73#define IICBUS_ASSERT_LOCKED(sc) mtx_assert(&(sc)->lock, MA_OWNED)
74
75int iicbus_generic_intr(device_t dev, int event, char *buf);
76void iicbus_init_frequency(device_t dev, u_int bus_freq);
77
78extern driver_t iicbus_driver;
79extern devclass_t iicbus_devclass;
80extern driver_t ofw_iicbus_driver;
81extern devclass_t ofw_iicbus_devclass;
80
81#endif
82
83#endif