diff options
author | Ioana Ciornei <ciorneiioana@gmail.com> | 2015-03-08 06:48:35 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-25 09:36:20 -0400 |
commit | 2aeebca2f3586755802689e12ba87140d803d88a (patch) | |
tree | 6679c7322b3b0b18dcfbf4b6eb9fa51251e46214 | |
parent | ea31003ccb2d684916cb7ebc079437ae85425a6d (diff) |
drivers: base: memory: Use tabs instead of spaces
This patch changes spaces to tabs. Found using checkpatch.pl
Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/base/memory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/memory.c b/drivers/base/memory.c index eb461cf8d6db..af9c911cd6b5 100644 --- a/drivers/base/memory.c +++ b/drivers/base/memory.c | |||
@@ -52,13 +52,13 @@ static BLOCKING_NOTIFIER_HEAD(memory_chain); | |||
52 | 52 | ||
53 | int register_memory_notifier(struct notifier_block *nb) | 53 | int register_memory_notifier(struct notifier_block *nb) |
54 | { | 54 | { |
55 | return blocking_notifier_chain_register(&memory_chain, nb); | 55 | return blocking_notifier_chain_register(&memory_chain, nb); |
56 | } | 56 | } |
57 | EXPORT_SYMBOL(register_memory_notifier); | 57 | EXPORT_SYMBOL(register_memory_notifier); |
58 | 58 | ||
59 | void unregister_memory_notifier(struct notifier_block *nb) | 59 | void unregister_memory_notifier(struct notifier_block *nb) |
60 | { | 60 | { |
61 | blocking_notifier_chain_unregister(&memory_chain, nb); | 61 | blocking_notifier_chain_unregister(&memory_chain, nb); |
62 | } | 62 | } |
63 | EXPORT_SYMBOL(unregister_memory_notifier); | 63 | EXPORT_SYMBOL(unregister_memory_notifier); |
64 | 64 | ||