Message ID | 1438322301-24584-1-git-send-email-yamada.masahiro@socionext.com |
---|---|
State | Accepted |
Headers | show |
On Fri, Jul 31, 2015 at 02:58:21PM +0900, Masahiro Yamada wrote: > Kbuild descends into drivers/soc/tegra/ only when CONFIG_ARCH_TEGRA > is enabled. (see drivers/soc/Makefile) > > $(CONFIG_ARCH_TEGRA) in drivers/soc/tegra/Makefile always evaluates > to 'y'. > > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> > --- > > drivers/soc/tegra/Makefile | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) Applied, thanks. Thierry
diff --git a/drivers/soc/tegra/Makefile b/drivers/soc/tegra/Makefile index cdaad9d..ae857ff 100644 --- a/drivers/soc/tegra/Makefile +++ b/drivers/soc/tegra/Makefile @@ -1,4 +1,4 @@ -obj-$(CONFIG_ARCH_TEGRA) += fuse/ +obj-y += fuse/ -obj-$(CONFIG_ARCH_TEGRA) += common.o -obj-$(CONFIG_ARCH_TEGRA) += pmc.o +obj-y += common.o +obj-y += pmc.o
Kbuild descends into drivers/soc/tegra/ only when CONFIG_ARCH_TEGRA is enabled. (see drivers/soc/Makefile) $(CONFIG_ARCH_TEGRA) in drivers/soc/tegra/Makefile always evaluates to 'y'. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- drivers/soc/tegra/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)