]> asedeno.scripts.mit.edu Git - linux.git/commit
regmap: include <linux/ktime.h> from include/linux/regmap.h
authorSean Wang <sean.wang@mediatek.com>
Mon, 23 Apr 2018 06:42:44 +0000 (14:42 +0800)
committerMark Brown <broonie@kernel.org>
Tue, 24 Apr 2018 17:11:50 +0000 (18:11 +0100)
commitf15cd6d99198e9c15229aefec639a34a6e8174c6
tree0424fd28b7a2626f179e329829971c750512229b
parente241e3f2bf975788a1b70dff2eb5180ca395b28e
regmap: include <linux/ktime.h> from include/linux/regmap.h

Similar to the readx_poll_timeout() macro calling ktime_* and using
ktime_t type, which is declared in <linux/ktime.h>. So, make
include/linux/regmap.h explicitly include <linux/ktime.h>, like
include/linux/iopoll.h does.  Otherwise, users of the macro will see
below errors.

error: implicit declaration of function ‘ktime_add_us’
[-Werror=implicit-function-declaration]

error: implicit declaration of function ‘ktime_get’
[-Werror=implicit-function-declaration]

error: implicit declaration of function ‘ktime_compare’
[-Werror=implicit-function-declaration]

include/linux/regmap.h:128:2: error: unknown type name ‘ktime_t’
  ktime_t __timeout = ktime_add_us(ktime_get(), __timeout_us); \

Signed-off-by: Sean Wang <sean.wang@mediatek.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
include/linux/regmap.h