aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateusz Guzik <mjg@FreeBSD.org>2023-03-01 11:09:48 +0000
committerMateusz Guzik <mjg@FreeBSD.org>2023-03-01 11:09:48 +0000
commit15c0b8c998616bf43a91f294381c39fb624e7fcc (patch)
treeddb1c34d263627c712a22cbad9cc53587a9d8e28
parent1ccc3107c296e9bd029dfa1d01a6beb4afc2ce1e (diff)
downloadsrc-15c0b8c998616bf43a91f294381c39fb624e7fcc.tar.gz
src-15c0b8c998616bf43a91f294381c39fb624e7fcc.zip
mips: whack __mips__ leftover
Sponsored by: Rubicon Communications, LLC ("Netgate")
-rw-r--r--sys/dev/usb/usb_freebsd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/usb_freebsd.h b/sys/dev/usb/usb_freebsd.h
index 2d2123d4b622..f01dc33211d5 100644
--- a/sys/dev/usb/usb_freebsd.h
+++ b/sys/dev/usb/usb_freebsd.h
@@ -64,7 +64,7 @@
#if (!defined(USB_HOST_ALIGN)) || (USB_HOST_ALIGN <= 0)
/* Use default value. */
#undef USB_HOST_ALIGN
-#if defined(__arm__) || defined(__mips__) || defined(__powerpc__)
+#if defined(__arm__) || defined(__powerpc__)
#define USB_HOST_ALIGN 32 /* Arm and MIPS need at least this much, if not more */
#else
#define USB_HOST_ALIGN 8 /* bytes, must be power of two */