git: eafafebe4728 - main - compat32: retire now-unused MIPS support

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Wed, 23 Nov 2022 14:35:53 UTC
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=eafafebe472872eb030d390e7acde16389a899ec

commit eafafebe472872eb030d390e7acde16389a899ec
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2022-11-23 14:30:49 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2022-11-23 14:33:43 +0000

    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 a52b33a72f8a..df7380252ced 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)	\