Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 847aeb6b authored by David Gibson's avatar David Gibson Committed by Paul Mackerras
Browse files

[PATCH] powerpc: Fix merged ipcbuf.h



Oops, when merging ipcbuf.h, I forgot that 'u64' can't be used in
user-visible headers.  This patch corrects the problem, replacing the
unused fields with an array of four __u32s.

Signed-off-by: default avatarDavid Gibson <dwg@au1.ibm.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent a39dbcf7
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -27,8 +27,7 @@ struct ipc64_perm
	__kernel_mode_t	mode;
	unsigned int	seq;
	unsigned int	__pad1;
	u64		__unused1;
	u64		__unused2;
	__u32		__unused[4];
};

#endif /* _ASM_POWERPC_IPCBUF_H */