diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2016-04-22 13:53:19 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2016-04-26 10:30:02 -0700 |
commit | 5da86baf694c5aca752b30b076d4789e05947add (patch) | |
tree | 5ad5a139b4ce2a215918a184a7e39c820efb27ba /arch/arm/configs/omap2plus_defconfig | |
parent | 0eafc36b7bb23d8be56b73f91a474028ef3e693d (diff) | |
download | talos-op-linux-5da86baf694c5aca752b30b076d4789e05947add.tar.gz talos-op-linux-5da86baf694c5aca752b30b076d4789e05947add.zip |
ARM: omap2plus_defconfig: Fix warning due invalid RXKAD symbol value
Commit 648af7fca159 ("rxrpc: Absorb the rxkad security module") changed
the RXKAD Kconfig symbol from tristate to boolean but the commit didn't
update the omap2plus_defconfig that was enabling CONFIG_RXKAD as module.
This leads to the following warning when using the omap2plus_defconfig:
arch/arm/configs/omap2plus_defconfig:112:warning: symbol value 'm' invalid for RXKAD
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/configs/omap2plus_defconfig')
-rw-r--r-- | arch/arm/configs/omap2plus_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig index 9edf8a493f07..c48cbd78e08f 100644 --- a/arch/arm/configs/omap2plus_defconfig +++ b/arch/arm/configs/omap2plus_defconfig @@ -109,7 +109,7 @@ CONFIG_BT_HCIVHCI=m CONFIG_BT_MRVL=m CONFIG_BT_MRVL_SDIO=m CONFIG_AF_RXRPC=m -CONFIG_RXKAD=m +CONFIG_RXKAD=y CONFIG_CFG80211=m CONFIG_MAC80211=m CONFIG_DEVTMPFS=y |