diff options
author | Jack F Vogel <jfv@FreeBSD.org> | 2015-03-17 22:40:50 +0000 |
---|---|---|
committer | Jack F Vogel <jfv@FreeBSD.org> | 2015-03-17 22:40:50 +0000 |
commit | bc2e8d79c7d4deb1933f240019cfd1210df32531 (patch) | |
tree | cea29b9083f02b8f1f6ebfb237371bdaf8b88be8 /sys/dev/ixgbe/ixgbe_api.c | |
parent | 743ffdaf3cf6b6c4d71516185324ee17be7c714e (diff) |
Resolve a few build issues, add module directories back into Makefile,
then correct a NETMAP problem resulting from the split, and finally
temporarily disable the X550 functionality.
Notes
Notes:
svn path=/head/; revision=280197
Diffstat (limited to 'sys/dev/ixgbe/ixgbe_api.c')
-rw-r--r-- | sys/dev/ixgbe/ixgbe_api.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ixgbe/ixgbe_api.c b/sys/dev/ixgbe/ixgbe_api.c index 76d7414d33a3..253566420534 100644 --- a/sys/dev/ixgbe/ixgbe_api.c +++ b/sys/dev/ixgbe/ixgbe_api.c @@ -81,6 +81,7 @@ s32 ixgbe_init_shared_code(struct ixgbe_hw *hw) case ixgbe_mac_X540: status = ixgbe_init_ops_X540(hw); break; +#if 0 //JFV temporary disable case ixgbe_mac_X550: status = ixgbe_init_ops_X550(hw); break; @@ -88,6 +89,7 @@ s32 ixgbe_init_shared_code(struct ixgbe_hw *hw) case ixgbe_mac_X550EM_a: status = ixgbe_init_ops_X550EM(hw); break; +#endif case ixgbe_mac_82599_vf: case ixgbe_mac_X540_vf: case ixgbe_mac_X550_vf: |