git: 408334df5e0e - main - link_elf.h: cleanup struct link_map definition, remove mips-specific field

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Thu, 06 Jan 2022 06:46:23 UTC
The branch main has been updated by kib:

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

commit 408334df5e0edba4ada84ac9e9a5e147172b722a
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2022-01-06 04:14:17 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2022-01-06 04:14:17 +0000

    link_elf.h: cleanup struct link_map definition, remove mips-specific field
    
    Sponsored by:   The FreeBSD Foundation
---
 sys/sys/link_elf.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/sys/sys/link_elf.h b/sys/sys/link_elf.h
index 8e41a670bec0..9a9bb6899e40 100644
--- a/sys/sys/link_elf.h
+++ b/sys/sys/link_elf.h
@@ -58,9 +58,6 @@
 
 typedef struct link_map {
 	caddr_t		l_base;			/* Base Address of library */
-#ifdef __mips__
-	caddr_t		l_xxx;			/* unused */
-#endif
 	const char	*l_name;		/* Absolute Path to Library */
 	const void	*l_ld;			/* Pointer to .dynamic in memory */
 	struct link_map	*l_next, *l_prev;	/* linked list of of mapped libs */