Deleted Added
sdiff udiff text old ( 302408 ) new ( 324472 )
full compact
1/*-
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. 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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)if.h 8.1 (Berkeley) 6/10/93
30 * $FreeBSD: stable/11/sys/net/if.h 301496 2016-06-06 09:51:58Z araujo $
31 */
32
33#ifndef _NET_IF_H_
34#define _NET_IF_H_
35
36#include <sys/cdefs.h>
37
38#if __BSD_VISIBLE

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

520 uint8_t dev_addr; /* i2c address (0xA0, 0xA2) */
521 uint8_t offset; /* read offset */
522 uint8_t len; /* read length */
523 uint8_t spare0;
524 uint32_t spare1;
525 uint8_t data[8]; /* read buffer */
526};
527
528#endif /* __BSD_VISIBLE */
529
530#ifdef _KERNEL
531#ifdef MALLOC_DECLARE
532MALLOC_DECLARE(M_IFADDR);
533MALLOC_DECLARE(M_IFMADDR);
534#endif
535#endif

--- 15 unchanged lines hidden ---