summaryrefslogtreecommitdiffstats
path: root/drivers/base/memory.c
diff options
context:
space:
mode:
authorIoana Ciornei2015-03-08 11:48:35 +0100
committerGreg Kroah-Hartman2015-03-25 14:36:20 +0100
commit2aeebca2f3586755802689e12ba87140d803d88a (patch)
tree6679c7322b3b0b18dcfbf4b6eb9fa51251e46214 /drivers/base/memory.c
parentfirmware_class: Fix whitespace and indentation (diff)
downloadkernel-qcow2-linux-2aeebca2f3586755802689e12ba87140d803d88a.tar.gz
kernel-qcow2-linux-2aeebca2f3586755802689e12ba87140d803d88a.tar.xz
kernel-qcow2-linux-2aeebca2f3586755802689e12ba87140d803d88a.zip
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>
Diffstat (limited to 'drivers/base/memory.c')
-rw-r--r--drivers/base/memory.c4
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);
int register_memory_notifier(struct notifier_block *nb)
{
- return blocking_notifier_chain_register(&memory_chain, nb);
+ return blocking_notifier_chain_register(&memory_chain, nb);
}
EXPORT_SYMBOL(register_memory_notifier);
void unregister_memory_notifier(struct notifier_block *nb)
{
- blocking_notifier_chain_unregister(&memory_chain, nb);
+ blocking_notifier_chain_unregister(&memory_chain, nb);
}
EXPORT_SYMBOL(unregister_memory_notifier);