diff options
author | sbz <sbz@FreeBSD.org> | 2013-01-30 18:01:20 +0000 |
---|---|---|
committer | sbz <sbz@FreeBSD.org> | 2013-01-30 18:01:20 +0000 |
commit | 4d7bb3e81a5dfb71f05d8dc1e9faa4d0bd112e1b (patch) | |
tree | b90283573540537e551848558d0045460649c4e6 /sys/dev/cfi/cfi_bus_ixp4xx.c | |
parent | 3e28301ce283fac4598377e876e6c9c8231a3c9a (diff) | |
download | FreeBSD-src-4d7bb3e81a5dfb71f05d8dc1e9faa4d0bd112e1b.zip FreeBSD-src-4d7bb3e81a5dfb71f05d8dc1e9faa4d0bd112e1b.tar.gz |
Use DEVMETHOD_END macro defined in sys/bus.h instead of {0, 0} sentinel on device_method_t arrays
Reviewed by: cognet
Approved by: cognet
Diffstat (limited to 'sys/dev/cfi/cfi_bus_ixp4xx.c')
-rw-r--r-- | sys/dev/cfi/cfi_bus_ixp4xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/cfi/cfi_bus_ixp4xx.c b/sys/dev/cfi/cfi_bus_ixp4xx.c index ef9da9ee..93d03fe 100644 --- a/sys/dev/cfi/cfi_bus_ixp4xx.c +++ b/sys/dev/cfi/cfi_bus_ixp4xx.c @@ -69,7 +69,7 @@ static device_method_t cfi_ixp4xx_methods[] = { DEVMETHOD(device_attach, cfi_attach), DEVMETHOD(device_detach, cfi_detach), - {0, 0} + DEVMETHOD_END }; static driver_t cfi_ixp4xx_driver = { |