diff options
author | ambrisko <ambrisko@FreeBSD.org> | 2012-04-02 19:13:02 +0000 |
---|---|---|
committer | ambrisko <ambrisko@FreeBSD.org> | 2012-04-02 19:13:02 +0000 |
commit | d5677c25b79eefc461a7c9312c4d1b0cd6053e9c (patch) | |
tree | eadeb025509e6311278f517fd4977d2d44b0a64e /sys/dev/mfi/mfi_ioctl.h | |
parent | f021ea5434f592e3851c6ac7ba55f702497922a1 (diff) | |
download | FreeBSD-src-d5677c25b79eefc461a7c9312c4d1b0cd6053e9c.zip FreeBSD-src-d5677c25b79eefc461a7c9312c4d1b0cd6053e9c.tar.gz |
Move struct megasas_sge from mfi_ioctl.h to mfivar.h so we can
remove including machine/bus.h. Add some more mfi_ prefixes to
avoid name space pollution.
This should address the last tinderbox issues.
Diffstat (limited to 'sys/dev/mfi/mfi_ioctl.h')
-rw-r--r-- | sys/dev/mfi/mfi_ioctl.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/dev/mfi/mfi_ioctl.h b/sys/dev/mfi/mfi_ioctl.h index e420017..da62ad9 100644 --- a/sys/dev/mfi/mfi_ioctl.h +++ b/sys/dev/mfi/mfi_ioctl.h @@ -28,19 +28,12 @@ __FBSDID("$FreeBSD$"); #include <dev/mfi/mfireg.h> -#include <machine/bus.h> struct iovec32 { u_int32_t iov_base; int iov_len; }; -struct megasas_sge -{ - bus_addr_t phys_addr; - uint32_t length; -}; - #define MFIQ_FREE 0 #define MFIQ_BIO 1 #define MFIQ_READY 2 |