瀏覽代碼

ASoC: max98373: usleep_range() needs include/delay.h

Commit ca917f9fe1a0fab added use of usleep_range() but not
the corresponding "include <linux/delay.h>". The result is
with Chrome OS won't build because warnings are forced
to be errors:
mnt/host/source/src/third_party/kernel/v4.4/sound/soc/codecs/max98373.c:734:2: error: implicit declaration of function 'usleep_range' [-Werror,-Wimplicit-function-declaration]
        usleep_range(10000, 11000);
        ^

Including delay.h "fixes" this.

Signed-off-by: Grant Grundler <grundler@chromium.org>
Reviewed-by: Benson Leung <bleung@chromium.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Grant Grundler 7 年之前
父節點
當前提交
3004136b90
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      sound/soc/codecs/max98373.c

+ 1 - 0
sound/soc/codecs/max98373.c

@@ -2,6 +2,7 @@
 // Copyright (c) 2017, Maxim Integrated
 // Copyright (c) 2017, Maxim Integrated
 
 
 #include <linux/acpi.h>
 #include <linux/acpi.h>
+#include <linux/delay.h>
 #include <linux/i2c.h>
 #include <linux/i2c.h>
 #include <linux/module.h>
 #include <linux/module.h>
 #include <linux/regmap.h>
 #include <linux/regmap.h>