]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/base/memory.c
drivers: base: memory: Use tabs instead of spaces
[karo-tx-linux.git] / drivers / base / memory.c
index 85be040a21c80505c09183c1578eb9c15f524244..af9c911cd6b5433fac09b013ad7927e9a7ede18d 100644 (file)
@@ -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);
 
@@ -152,20 +152,20 @@ static ssize_t show_mem_state(struct device *dev,
         * so that they're not open-coded
         */
        switch (mem->state) {
-               case MEM_ONLINE:
-                       len = sprintf(buf, "online\n");
-                       break;
-               case MEM_OFFLINE:
-                       len = sprintf(buf, "offline\n");
-                       break;
-               case MEM_GOING_OFFLINE:
-                       len = sprintf(buf, "going-offline\n");
-                       break;
-               default:
-                       len = sprintf(buf, "ERROR-UNKNOWN-%ld\n",
-                                       mem->state);
-                       WARN_ON(1);
-                       break;
+       case MEM_ONLINE:
+               len = sprintf(buf, "online\n");
+               break;
+       case MEM_OFFLINE:
+               len = sprintf(buf, "offline\n");
+               break;
+       case MEM_GOING_OFFLINE:
+               len = sprintf(buf, "going-offline\n");
+               break;
+       default:
+               len = sprintf(buf, "ERROR-UNKNOWN-%ld\n",
+                               mem->state);
+               WARN_ON(1);
+               break;
        }
 
        return len;
@@ -232,19 +232,19 @@ memory_block_action(unsigned long phys_index, unsigned long action, int online_t
        first_page = pfn_to_page(start_pfn);
 
        switch (action) {
-               case MEM_ONLINE:
-                       if (!pages_correctly_reserved(start_pfn))
-                               return -EBUSY;
-
-                       ret = online_pages(start_pfn, nr_pages, online_type);
-                       break;
-               case MEM_OFFLINE:
-                       ret = offline_pages(start_pfn, nr_pages);
-                       break;
-               default:
-                       WARN(1, KERN_WARNING "%s(%ld, %ld) unknown action: "
-                            "%ld\n", __func__, phys_index, action, action);
-                       ret = -EINVAL;
+       case MEM_ONLINE:
+               if (!pages_correctly_reserved(start_pfn))
+                       return -EBUSY;
+
+               ret = online_pages(start_pfn, nr_pages, online_type);
+               break;
+       case MEM_OFFLINE:
+               ret = offline_pages(start_pfn, nr_pages);
+               break;
+       default:
+               WARN(1, KERN_WARNING "%s(%ld, %ld) unknown action: "
+                    "%ld\n", __func__, phys_index, action, action);
+               ret = -EINVAL;
        }
 
        return ret;