diff mbox series

[1/2] regmap: Fix implicit inclusion of device.h

Message ID 1459280515-1006-1-git-send-email-broonie@kernel.org
State New
Headers show
Series [1/2] regmap: Fix implicit inclusion of device.h | expand

Commit Message

Mark Brown March 29, 2016, 7:41 p.m. UTC
internal.h is using dev_name() but doesn't include device.h which
defines it.  Add an explicit include to avoid build problems due to
this.

Signed-off-by: Mark Brown <broonie@kernel.org>

---
 drivers/base/regmap/internal.h | 1 +
 1 file changed, 1 insertion(+)

-- 
2.8.0.rc3
diff mbox series

Patch

diff --git a/drivers/base/regmap/internal.h b/drivers/base/regmap/internal.h
index 5c79526245c2..a0380338946a 100644
--- a/drivers/base/regmap/internal.h
+++ b/drivers/base/regmap/internal.h
@@ -13,6 +13,7 @@ 
 #ifndef _REGMAP_INTERNAL_H
 #define _REGMAP_INTERNAL_H
 
+#include <linux/device.h>
 #include <linux/regmap.h>
 #include <linux/fs.h>
 #include <linux/list.h>