kernel module: format, use tab to indent.

This commit is contained in:
Reveriel
2018-12-11 09:00:29 +00:00
committed by Ciro Santilli 包子露宪 六四事件 法轮功
parent 9f6ddbc436
commit 3b0a343647
7 changed files with 117 additions and 117 deletions

View File

@@ -8,8 +8,8 @@
static int myinit(void)
{
void *dst, *src;
dst = kmalloc(0x10, GFP_KERNEL);
src = kmalloc(0x1000000, GFP_KERNEL);
dst = kmalloc(0x10, GFP_KERNEL);
src = kmalloc(0x1000000, GFP_KERNEL);
memcpy(dst, src, 0x1000000);
return 0;
}