From eafafebe472872eb030d390e7acde16389a899ec Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Wed, 23 Nov 2022 09:30:49 -0500 Subject: [PATCH] compat32: retire now-unused MIPS support This reverts commit a6d20bbaa2f4bb3684d2c396ef1f1411c8fb8499. --- sys/compat/freebsd32/freebsd32_misc.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sys/compat/freebsd32/freebsd32_misc.c b/sys/compat/freebsd32/freebsd32_misc.c index a52b33a72f8..df7380252ce 100644 --- a/sys/compat/freebsd32/freebsd32_misc.c +++ b/sys/compat/freebsd32/freebsd32_misc.c @@ -1311,11 +1311,7 @@ freebsd32_copyoutmsghdr(struct msghdr *msg, struct msghdr32 *msg32) return (error); } -#ifndef __mips__ #define FREEBSD32_ALIGNBYTES (sizeof(int) - 1) -#else -#define FREEBSD32_ALIGNBYTES (sizeof(long) - 1) -#endif #define FREEBSD32_ALIGN(p) \ (((u_long)(p) + FREEBSD32_ALIGNBYTES) & ~FREEBSD32_ALIGNBYTES) #define FREEBSD32_CMSG_SPACE(l) \