Nothing tests this define so just remove it. I suspect the intention was to make the uid field in siginfo 16bit however I can't find any code that ever tested this defined, and even if it did it the layout has been this way for 8 years so changing it now would break the ABI with userspace. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
17 lines
347 B
C
17 lines
347 B
C
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
|
|
/*
|
|
* Copyright 2004-2008 Analog Devices Inc.
|
|
*
|
|
* Licensed under the GPL-2 or later.
|
|
*/
|
|
|
|
#ifndef _UAPI_BFIN_SIGINFO_H
|
|
#define _UAPI_BFIN_SIGINFO_H
|
|
|
|
#include <linux/types.h>
|
|
#include <asm-generic/siginfo.h>
|
|
|
|
#define si_uid16 _sifields._kill._uid
|
|
|
|
#endif /* _UAPI_BFIN_SIGINFO_H */
|