leds: Reorder include directives
authorJacek Anaszewski <j.anaszewski@samsung.com>
Thu, 7 Aug 2014 12:10:22 +0000 (05:10 -0700)
committerBryan Wu <cooloney@gmail.com>
Thu, 11 Sep 2014 23:55:25 +0000 (16:55 -0700)
Reorder include directives so that they are arranged
in alphabetical order.

Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com>
Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
drivers/leds/led-class.c
drivers/leds/led-core.c
include/linux/leds.h

index aa29198fca3e2b2c892268eb2549444b1beb499c..4bd4572efe6e79c381da50f708cd94c81e22394e 100644 (file)
@@ -9,16 +9,17 @@
  * published by the Free Software Foundation.
  */
 
-#include <linux/module.h>
-#include <linux/kernel.h>
+#include <linux/ctype.h>
+#include <linux/device.h>
+#include <linux/err.h>
 #include <linux/init.h>
+#include <linux/kernel.h>
+#include <linux/leds.h>
 #include <linux/list.h>
+#include <linux/module.h>
+#include <linux/slab.h>
 #include <linux/spinlock.h>
-#include <linux/device.h>
 #include <linux/timer.h>
-#include <linux/err.h>
-#include <linux/ctype.h>
-#include <linux/leds.h>
 #include "leds.h"
 
 static struct class *leds_class;
index 71b40d3bf77604e32829f391b6e804bbeefb0cf1..50b579ad948e3530cc4cbe184a877ac5c4c9bdf6 100644 (file)
  */
 
 #include <linux/kernel.h>
+#include <linux/leds.h>
 #include <linux/list.h>
 #include <linux/module.h>
+#include <linux/mutex.h>
 #include <linux/rwsem.h>
-#include <linux/leds.h>
 #include "leds.h"
 
 DECLARE_RWSEM(leds_list_lock);
index e436864721971c81383a323bf3951e19632475a0..4be2d7623d9eef15fd17e38ab96165be51654e19 100644 (file)
@@ -13,8 +13,8 @@
 #define __LINUX_LEDS_H_INCLUDED
 
 #include <linux/list.h>
-#include <linux/spinlock.h>
 #include <linux/rwsem.h>
+#include <linux/spinlock.h>
 #include <linux/timer.h>
 #include <linux/workqueue.h>
 
This page took 0.046193 seconds and 5 git commands to generate.