diff options
author | Jan Blunck <jblunck@suse.de> | 2006-10-06 00:43:58 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-06 08:53:41 -0700 |
commit | a666ecfbf512dbd63a60f65d2ad6733a9a1b12ee (patch) | |
tree | 670d0bd90f424101a8f05639ff517e464c4005c6 /include/asm-s390 | |
parent | dc366708b3b022050f139347a44c65a102e4835d (diff) | |
download | op-kernel-dev-a666ecfbf512dbd63a60f65d2ad6733a9a1b12ee.zip op-kernel-dev-a666ecfbf512dbd63a60f65d2ad6733a9a1b12ee.tar.gz |
[PATCH] Fix typo in "syntax error if percpu macros are incorrectly used" patch
Trivial typo fix in the "syntax error if percpu macros are incorrectly
used" patch. I misspelled "identifier" in all places. D'Oh!
Thanks to Dirk Mueller to point this out.
Signed-off-by: Jan Blunck <jblunck@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-s390')
-rw-r--r-- | include/asm-s390/percpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-s390/percpu.h b/include/asm-s390/percpu.h index 495ad99..9ea7f10 100644 --- a/include/asm-s390/percpu.h +++ b/include/asm-s390/percpu.h @@ -16,7 +16,7 @@ #if defined(__s390x__) && defined(MODULE) #define __reloc_hide(var,offset) (*({ \ - extern int simple_indentifier_##var(void); \ + extern int simple_identifier_##var(void); \ unsigned long *__ptr; \ asm ( "larl %0,per_cpu__"#var"@GOTENT" \ : "=a" (__ptr) : "X" (per_cpu__##var) ); \ @@ -25,7 +25,7 @@ #else #define __reloc_hide(var, offset) (*({ \ - extern int simple_indentifier_##var(void); \ + extern int simple_identifier_##var(void); \ unsigned long __ptr; \ asm ( "" : "=a" (__ptr) : "0" (&per_cpu__##var) ); \ (typeof(&per_cpu__##var)) (__ptr + (offset)); })) |