mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-29 21:14:27 +01:00
userland: scope every header identifier with lkmc_
This commit is contained in:
@@ -2,16 +2,16 @@
|
||||
|
||||
#include "common.h"
|
||||
|
||||
ENTRY
|
||||
LKMC_ENTRY
|
||||
ldr x19, =0x1122334455667788
|
||||
|
||||
// lsr alias: imms == 63
|
||||
|
||||
ldr x20, =0xFFFFFFFFFFFFFFFF
|
||||
ubfm x20, x19, 16, 63
|
||||
ASSERT_EQ(x20, 0x0000112233445566)
|
||||
LKMC_ASSERT_EQ(x20, 0x0000112233445566)
|
||||
|
||||
ldr x20, =0xFFFFFFFFFFFFFFFF
|
||||
ubfm x20, x19, 32, 63
|
||||
ASSERT_EQ(x20, 0x0000000011223344)
|
||||
EXIT
|
||||
LKMC_ASSERT_EQ(x20, 0x0000000011223344)
|
||||
LKMC_EXIT
|
||||
|
||||
Reference in New Issue
Block a user