compat32: retire now-unused MIPS support

This reverts commit a6d20bbaa2.
This commit is contained in:
Ed Maste 2022-11-23 09:30:49 -05:00
parent 7c326ab5bb
commit eafafebe47

View File

@ -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) \