diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2015-10-25 21:32:42 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-10-28 22:05:21 +0300 |
commit | 830c7df46247b44aa46ae276073e2e10727c9e93 (patch) | |
tree | b87ad6e0c83d8af2d6db206fd21d37095c00de0e /drivers/ssb/ssb_private.h | |
parent | 399500da18f7fe79699c0e4f603f8874cecb3898 (diff) | |
download | linux-830c7df46247b44aa46ae276073e2e10727c9e93.tar.xz |
ssb: move functions specific to SoC hosted bus to separated file
This cleans main.c a bit and will allow us to compile SoC related code
conditionally in the future.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/ssb/ssb_private.h')
-rw-r--r-- | drivers/ssb/ssb_private.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/ssb/ssb_private.h b/drivers/ssb/ssb_private.h index 93bb8f0195a9..0a756c2519e5 100644 --- a/drivers/ssb/ssb_private.h +++ b/drivers/ssb/ssb_private.h @@ -157,6 +157,11 @@ static inline int ssb_sdio_init(struct ssb_bus *bus) } #endif /* CONFIG_SSB_SDIOHOST */ +/************************************************** + * host_soc.c + **************************************************/ + +extern const struct ssb_bus_ops ssb_host_soc_ops; /* scan.c */ extern const char *ssb_core_name(u16 coreid); |