diff options
| author | Josh Poimboeuf <[email protected]> | 2017-02-13 19:42:37 -0600 |
|---|---|---|
| committer | Jiri Kosina <[email protected]> | 2017-03-08 09:23:40 +0100 |
| commit | c349cdcaba589fb49cf105093ebc695eb8b9ff08 (patch) | |
| tree | 0ab3165baae80dbfed236b5e2c23afd3d14ba14d /kernel/livepatch/Makefile | |
| parent | aa82dc3e00da63751bb9dfab26983037b79fc39d (diff) | |
livepatch: move patching functions into patch.c
Move functions related to the actual patching of functions and objects
into a new patch.c file.
Signed-off-by: Josh Poimboeuf <[email protected]>
Acked-by: Miroslav Benes <[email protected]>
Reviewed-by: Petr Mladek <[email protected]>
Reviewed-by: Kamalesh Babulal <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
Diffstat (limited to 'kernel/livepatch/Makefile')
| -rw-r--r-- | kernel/livepatch/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/livepatch/Makefile b/kernel/livepatch/Makefile index e8780c0901d9..e136dad8ff7e 100644 --- a/kernel/livepatch/Makefile +++ b/kernel/livepatch/Makefile @@ -1,3 +1,3 @@ obj-$(CONFIG_LIVEPATCH) += livepatch.o -livepatch-objs := core.o +livepatch-objs := core.o patch.o |