git: 15c0b8c99861 - main - mips: whack __mips__ leftover
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 01 Mar 2023 11:10:16 UTC
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=15c0b8c998616bf43a91f294381c39fb624e7fcc commit 15c0b8c998616bf43a91f294381c39fb624e7fcc Author: Mateusz Guzik <mjg@FreeBSD.org> AuthorDate: 2023-03-01 11:09:48 +0000 Commit: Mateusz Guzik <mjg@FreeBSD.org> CommitDate: 2023-03-01 11:09:48 +0000 mips: whack __mips__ leftover Sponsored by: Rubicon Communications, LLC ("Netgate") --- sys/dev/usb/usb_freebsd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */