Deleted Added
full compact
smbus.c (46743) smbus.c (49195)
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: smbus.c,v 1.8 1999/02/13 17:57:19 nsouch Exp $
26 * $Id: smbus.c,v 1.9 1999/05/08 21:59:08 dfr Exp $
27 *
28 */
29#include <sys/param.h>
30#include <sys/systm.h>
31#include <sys/kernel.h>
32#include <sys/module.h>
33#include <sys/bus.h>
34

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

59
60static devclass_t smbus_devclass;
61
62/*
63 * Device methods
64 */
65static int smbus_probe(device_t);
66static int smbus_attach(device_t);
27 *
28 */
29#include <sys/param.h>
30#include <sys/systm.h>
31#include <sys/kernel.h>
32#include <sys/module.h>
33#include <sys/bus.h>
34

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

59
60static devclass_t smbus_devclass;
61
62/*
63 * Device methods
64 */
65static int smbus_probe(device_t);
66static int smbus_attach(device_t);
67static void smbus_print_child(device_t, device_t);
68
69#if 0
70static int smbus_read_ivar(device_t , device_t, int, u_long *);
71#endif
72
73static device_method_t smbus_methods[] = {
74 /* device interface */
75 DEVMETHOD(device_probe, smbus_probe),
76 DEVMETHOD(device_attach, smbus_attach),
77 DEVMETHOD(device_detach, bus_generic_detach),
78 DEVMETHOD(device_shutdown, bus_generic_shutdown),
79
80 /* bus interface */
67
68#if 0
69static int smbus_read_ivar(device_t , device_t, int, u_long *);
70#endif
71
72static device_method_t smbus_methods[] = {
73 /* device interface */
74 DEVMETHOD(device_probe, smbus_probe),
75 DEVMETHOD(device_attach, smbus_attach),
76 DEVMETHOD(device_detach, bus_generic_detach),
77 DEVMETHOD(device_shutdown, bus_generic_shutdown),
78
79 /* bus interface */
81 DEVMETHOD(bus_print_child, smbus_print_child),
80 DEVMETHOD(bus_print_child, bus_generic_print_child),
82 DEVMETHOD(bus_read_ivar, bus_generic_read_ivar),
83 DEVMETHOD(bus_write_ivar, bus_generic_write_ivar),
84
85 { 0, 0 }
86};
87
88static driver_t smbus_driver = {
89 "smbus",

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

127}
128
129void
130smbus_generic_intr(device_t dev, u_char devaddr, char low, char high)
131{
132 return;
133}
134
81 DEVMETHOD(bus_read_ivar, bus_generic_read_ivar),
82 DEVMETHOD(bus_write_ivar, bus_generic_write_ivar),
83
84 { 0, 0 }
85};
86
87static driver_t smbus_driver = {
88 "smbus",

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

126}
127
128void
129smbus_generic_intr(device_t dev, u_char devaddr, char low, char high)
130{
131 return;
132}
133
135static void
136smbus_print_child(device_t bus, device_t dev)
137{
138
139 printf(" on %s%d", device_get_name(bus), device_get_unit(bus));
140
141 return;
142}
143
144#if 0
145static int
146smbus_read_ivar(device_t bus, device_t dev, int index, u_long* result)
147{
148 struct smbus_device* smbdev = DEVTOSMBUS(dev);
149
150 switch (index) {
151 default:
152 break;
153 }
154 return (ENOENT);
155}
156#endif
157
158DRIVER_MODULE(smbus, iicsmb, smbus_driver, smbus_devclass, 0, 0);
159DRIVER_MODULE(smbus, bti2c, smbus_driver, smbus_devclass, 0, 0);
160DRIVER_MODULE(smbus, intsmb, smbus_driver, smbus_devclass, 0, 0);
161DRIVER_MODULE(smbus, alsmb, smbus_driver, smbus_devclass, 0, 0);
134#if 0
135static int
136smbus_read_ivar(device_t bus, device_t dev, int index, u_long* result)
137{
138 struct smbus_device* smbdev = DEVTOSMBUS(dev);
139
140 switch (index) {
141 default:
142 break;
143 }
144 return (ENOENT);
145}
146#endif
147
148DRIVER_MODULE(smbus, iicsmb, smbus_driver, smbus_devclass, 0, 0);
149DRIVER_MODULE(smbus, bti2c, smbus_driver, smbus_devclass, 0, 0);
150DRIVER_MODULE(smbus, intsmb, smbus_driver, smbus_devclass, 0, 0);
151DRIVER_MODULE(smbus, alsmb, smbus_driver, smbus_devclass, 0, 0);