mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-31 17:17:43 +03:00
[PATCH] Add 'asmlinkage' to udev-030
The following patch adds 'asmlinkage' defines to udev, to kill off 2 warnings on !i386. Signed-off-by: Tom Rini <trini@kernel.crashing.org> Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
This commit is contained in:
parent
4723bf98c0
commit
807755776d
4
Makefile
4
Makefile
@ -114,9 +114,9 @@ ifeq ($(strip $(TARGET_ARCH)),i386)
|
||||
/dev/null >/dev/null 2>&1; then echo "-mpreferred-stack-boundary=2"; fi}
|
||||
OPTIMIZATION += ${shell if $(CC) -malign-functions=0 -malign-jumps=0 -S -o /dev/null -xc \
|
||||
/dev/null >/dev/null 2>&1; then echo "-malign-functions=0 -malign-jumps=0"; fi}
|
||||
CFLAGS+=-pipe
|
||||
CFLAGS+=-pipe -Dasmlinkage=__attribute__((regparm(0)))
|
||||
else
|
||||
CFLAGS+=-pipe
|
||||
CFLAGS+=-pipe -Dasmlinkage=
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(USE_LOG)),true)
|
||||
|
2
udev.c
2
udev.c
@ -55,7 +55,7 @@ void log_message(int level, const char *format, ...)
|
||||
}
|
||||
#endif
|
||||
|
||||
__attribute__((regparm(0))) static void sig_handler(int signum)
|
||||
asmlinkage static void sig_handler(int signum)
|
||||
{
|
||||
switch (signum) {
|
||||
case SIGINT:
|
||||
|
Loading…
Reference in New Issue
Block a user