Deleted Added
full compact
cardbusvar.h (256281) cardbusvar.h (280970)
1/*-
2 * Copyright (c) 2008, M. Warner Losh
3 * Copyright (c) 2000,2001 Jonathan Chen.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

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

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

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: stable/10/sys/dev/cardbus/cardbusvar.h 185545 2008-12-02 04:54:31Z imp $
27 * $FreeBSD: stable/10/sys/dev/cardbus/cardbusvar.h 280970 2015-04-01 21:48:54Z jhb $
28 */
29
30/*
31 * Structure definitions for the Cardbus Bus driver
32 */
33
34/*
35 * Static copy of the CIS buffer. Technically, you aren't supposed

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

64};
65
66/*
67 * Per cardbus soft info. Not sure why we even keep this around...
68 */
69struct cardbus_softc
70{
71 device_t sc_dev;
28 */
29
30/*
31 * Structure definitions for the Cardbus Bus driver
32 */
33
34/*
35 * Static copy of the CIS buffer. Technically, you aren't supposed

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

64};
65
66/*
67 * Per cardbus soft info. Not sure why we even keep this around...
68 */
69struct cardbus_softc
70{
71 device_t sc_dev;
72#ifdef PCI_RES_BUS
73 struct resource *sc_bus;
74#endif
72};
73
74/*
75 * Per node callback structures.
76 */
77struct tuple_callbacks;
78typedef int (tuple_cb) (device_t cbdev, device_t child, int id, int len,
79 uint8_t *tupledata, uint32_t start, uint32_t *off,

--- 12 unchanged lines hidden ---
75};
76
77/*
78 * Per node callback structures.
79 */
80struct tuple_callbacks;
81typedef int (tuple_cb) (device_t cbdev, device_t child, int id, int len,
82 uint8_t *tupledata, uint32_t start, uint32_t *off,

--- 12 unchanged lines hidden ---