diff options
author | Tzung-Bi Shih <tzungbi@kernel.org> | 2022-02-16 11:03:05 +0300 |
---|---|---|
committer | Tzung-Bi Shih <tzungbi@kernel.org> | 2022-04-18 10:39:27 +0300 |
commit | 5781a33098c69a3b08890ad78a297b81bb69ca4b (patch) | |
tree | 4917cfcfd45ba3dc231e2f2414f49d0085082823 /drivers/platform/chrome | |
parent | 9fbe967d4e6e017c85c94aead6a1310b5f77db9a (diff) | |
download | linux-5781a33098c69a3b08890ad78a297b81bb69ca4b.tar.xz |
platform/chrome: cros_ec: sort header inclusion alphabetically
Sort header inclusion alphabetically.
Reviewed-by: Guenter Roeck <groeck@google.com>
Reviewed-by: Prashant Malani <pmalani@chromium.org>
Signed-off-by: Tzung-Bi Shih <tzungbi@kernel.org>
Diffstat (limited to 'drivers/platform/chrome')
-rw-r--r-- | drivers/platform/chrome/cros_ec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/chrome/cros_ec.c b/drivers/platform/chrome/cros_ec.c index 3bd2b548179d..9a5d01bf1f76 100644 --- a/drivers/platform/chrome/cros_ec.c +++ b/drivers/platform/chrome/cros_ec.c @@ -9,12 +9,12 @@ * battery charging and regulator control, firmware update. */ -#include <linux/of_platform.h> #include <linux/interrupt.h> -#include <linux/slab.h> #include <linux/module.h> +#include <linux/of_platform.h> #include <linux/platform_data/cros_ec_commands.h> #include <linux/platform_data/cros_ec_proto.h> +#include <linux/slab.h> #include <linux/suspend.h> #include "cros_ec.h" |