Skip to content

Commit 518e162

Browse files
arndbsre
authored andcommitted
HSI: fix omap ssi driver dependency
The SSI protocol implementation has an incorrect dependency on the OMAP_SSI driver, which allows SSI to be built-in while the underlying OMAP_SSI implementation is a loadable module, causing a link error. This changes the dependency to the simpler 'depends on OMAP_SSI' that also ensures that SSI-protocol can only be a module if OMAP_SSI is not built-in. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: Sebastian Reichel <sre@kernel.org> Cc: Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com> Cc: Pavel Machek <pavel@ucw.cz> Signed-off-by: Sebastian Reichel <sre@kernel.org>
1 parent eafaebd commit 518e162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/hsi/clients/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ config NOKIA_MODEM
1515

1616
config SSI_PROTOCOL
1717
tristate "SSI protocol"
18-
depends on HSI && PHONET && (OMAP_SSI=y || OMAP_SSI=m)
18+
depends on HSI && PHONET && OMAP_SSI
1919
help
2020
If you say Y here, you will enable the SSI protocol aka McSAAB.
2121

0 commit comments

Comments
 (0)