diff options
| author | Alexander Motin <mav@FreeBSD.org> | 2013-04-05 08:22:11 +0000 |
|---|---|---|
| committer | Alexander Motin <mav@FreeBSD.org> | 2013-04-05 08:22:11 +0000 |
| commit | 1139d398ea93668ee65ae02b8ceab630ca9e5487 (patch) | |
| tree | a4629330e881449334385adea8eafefa5341913c /sys/dev/iicbus | |
| parent | e7e817f79c5ff2f455eecdaadd12449f1265c3f4 (diff) | |
Notes
Diffstat (limited to 'sys/dev/iicbus')
| -rw-r--r-- | sys/dev/iicbus/ad7417.c | 2 | ||||
| -rw-r--r-- | sys/dev/iicbus/max6690.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/iicbus/ad7417.c b/sys/dev/iicbus/ad7417.c index 6ae16be64e33..acd2d8929cb5 100644 --- a/sys/dev/iicbus/ad7417.c +++ b/sys/dev/iicbus/ad7417.c @@ -121,7 +121,7 @@ static driver_t ad7417_driver = { static devclass_t ad7417_devclass; DRIVER_MODULE(ad7417, iicbus, ad7417_driver, ad7417_devclass, 0, 0); -MALLOC_DEFINE(M_AD7417, "ad7417", "Supply-Monitor AD7417"); +static MALLOC_DEFINE(M_AD7417, "ad7417", "Supply-Monitor AD7417"); static int diff --git a/sys/dev/iicbus/max6690.c b/sys/dev/iicbus/max6690.c index 83f3b5047a46..ab312e730635 100644 --- a/sys/dev/iicbus/max6690.c +++ b/sys/dev/iicbus/max6690.c @@ -101,7 +101,7 @@ static driver_t max6690_driver = { static devclass_t max6690_devclass; DRIVER_MODULE(max6690, iicbus, max6690_driver, max6690_devclass, 0, 0); -MALLOC_DEFINE(M_MAX6690, "max6690", "Temp-Monitor MAX6690"); +static MALLOC_DEFINE(M_MAX6690, "max6690", "Temp-Monitor MAX6690"); static int max6690_read(device_t dev, uint32_t addr, uint8_t reg, uint8_t *data) |
