From: Mark Brown Date: Tue, 29 Mar 2016 19:28:33 +0000 (-0700) Subject: regmap: Fix implicit inclusion of device.h X-Git-Tag: Ubuntu-4.8.0-22.24~1343^2^2~1 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=4f7d6dd4df8b388e2056c89b528254cdd79dea2a;p=mirror_ubuntu-zesty-kernel.git regmap: Fix implicit inclusion of device.h 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. Tested-by: Alexander Stein Signed-off-by: Mark Brown --- 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 #include #include #include