Skip to content

Commit

Permalink
HSI: fix omap ssi driver dependency
Browse files Browse the repository at this point in the history
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 <[email protected]>
Cc: Sebastian Reichel <[email protected]>
Cc: Ivaylo Dimitrov <[email protected]>
Cc: Pavel Machek <[email protected]>
Signed-off-by: Sebastian Reichel <[email protected]>
  • Loading branch information
arndb authored and sre committed Jun 3, 2014
1 parent eafaebd commit 518e162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/hsi/clients/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ config NOKIA_MODEM

config SSI_PROTOCOL
tristate "SSI protocol"
depends on HSI && PHONET && (OMAP_SSI=y || OMAP_SSI=m)
depends on HSI && PHONET && OMAP_SSI
help
If you say Y here, you will enable the SSI protocol aka McSAAB.

Expand Down

0 comments on commit 518e162

Please sign in to comment.