mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-28 04:24:26 +01:00
userland: scope every header identifier with lkmc_
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
|
||||
#include "common.h"
|
||||
|
||||
ENTRY
|
||||
LKMC_ENTRY
|
||||
/* 0x0F & ~0x55 == 0x0F & 0xAA == 0x0A */
|
||||
mov r0, 0x0F
|
||||
bic r0, 0x55
|
||||
ASSERT_EQ(r0, 0x0A)
|
||||
EXIT
|
||||
LKMC_ASSERT_EQ(r0, 0x0A)
|
||||
LKMC_EXIT
|
||||
|
||||
Reference in New Issue
Block a user