diff options
author | Brian Norris <computersforpeace@gmail.com> | 2015-06-18 17:11:32 -0700 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2015-09-14 15:44:18 -0700 |
commit | d52fad262041217be0a0e7049253186ec9cfb2a6 (patch) | |
tree | bf8d98f7b5aa484ef0d830548ff36c60b71bfa97 /include/soc | |
parent | 1f3e9a6edae4f1168a4baaeb4c55d4eb5a8f7501 (diff) | |
download | linux-stable-d52fad262041217be0a0e7049253186ec9cfb2a6.tar.gz linux-stable-d52fad262041217be0a0e7049253186ec9cfb2a6.tar.bz2 linux-stable-d52fad262041217be0a0e7049253186ec9cfb2a6.zip |
soc: add stubs for brcmstb SoC's
Used on BCM7xxx Set-Top Box chips (e.g., BCM7445).
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Diffstat (limited to 'include/soc')
-rw-r--r-- | include/soc/brcmstb/common.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/soc/brcmstb/common.h b/include/soc/brcmstb/common.h new file mode 100644 index 000000000000..cfb5335f2a15 --- /dev/null +++ b/include/soc/brcmstb/common.h @@ -0,0 +1,15 @@ +/* + * Copyright © 2014 NVIDIA Corporation + * Copyright © 2015 Broadcom Corporation + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef __SOC_BRCMSTB_COMMON_H__ +#define __SOC_BRCMSTB_COMMON_H__ + +bool soc_is_brcmstb(void); + +#endif /* __SOC_BRCMSTB_COMMON_H__ */ |