aboutsummaryrefslogtreecommitdiff
path: root/drivers/sound/wm8994.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-12-03 04:37:34 -0700
committerSimon Glass <sjg@chromium.org>2018-12-13 16:32:49 -0700
commita1efd49ee269e0eeb9af12d52031853d08928810 (patch)
tree900e35a2e7b64c55c17a18ae91374c9fa2712dac /drivers/sound/wm8994.c
parent9ca9f6d58b77bbd9ece37cd61bbff068611cc0d2 (diff)
downloadu-boot-a1efd49ee269e0eeb9af12d52031853d08928810.zip
u-boot-a1efd49ee269e0eeb9af12d52031853d08928810.tar.gz
u-boot-a1efd49ee269e0eeb9af12d52031853d08928810.tar.bz2
dm: sound: Fix up header ordering
Tidy up the ordering of header files in the sounds files. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/sound/wm8994.c')
-rw-r--r--drivers/sound/wm8994.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/sound/wm8994.c b/drivers/sound/wm8994.c
index a888a0b..1714f43 100644
--- a/drivers/sound/wm8994.c
+++ b/drivers/sound/wm8994.c
@@ -4,15 +4,15 @@
* R. Chandrasekar <rcsekar@samsung.com>
*/
#include <common.h>
-#include <asm/arch/clk.h>
-#include <asm/arch/cpu.h>
-#include <asm/gpio.h>
-#include <asm/io.h>
#include <div64.h>
#include <fdtdec.h>
#include <i2c.h>
#include <i2s.h>
#include <sound.h>
+#include <asm/gpio.h>
+#include <asm/io.h>
+#include <asm/arch/clk.h>
+#include <asm/arch/cpu.h>
#include <asm/arch/sound.h>
#include "wm8994.h"
#include "wm8994_registers.h"