mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 06:04:14 +08:00
94bf2f28c9
Now that the SPDX tag is in all arch/s390/include/ files, that identifies the license in a specific and legally-defined manner. So the extra GPL text wording can be removed as it is no longer needed at all. This is done on a quest to remove the 700+ different ways that files in the kernel describe the GPL license text. And there's unneeded stuff like the address (sometimes incorrect) for the FSF which is never needed. No copyright headers or other non-license-description text was removed. Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Christian Borntraeger <borntraeger@de.ibm.com> Cc: Cornelia Huck <cohuck@redhat.com> Cc: Halil Pasic <pasic@linux.vnet.ibm.com> Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
27 lines
461 B
C
27 lines
461 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* livepatch.h - s390-specific Kernel Live Patching Core
|
|
*
|
|
* Copyright (c) 2013-2015 SUSE
|
|
* Authors: Jiri Kosina
|
|
* Vojtech Pavlik
|
|
* Jiri Slaby
|
|
*/
|
|
|
|
#ifndef ASM_LIVEPATCH_H
|
|
#define ASM_LIVEPATCH_H
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
static inline int klp_check_compiler_support(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void klp_arch_set_pc(struct pt_regs *regs, unsigned long ip)
|
|
{
|
|
regs->psw.addr = ip;
|
|
}
|
|
|
|
#endif
|