diff options
| author | Linus Walleij <linus.walleij@linaro.org> | 2015-10-08 11:08:31 +0200 | 
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2015-12-15 09:42:50 +0100 | 
| commit | 5d87f7a314b94a8852a07d7e2260ee6db66cb29f (patch) | |
| tree | e9ac3809a3fba3a495d4e9cbdec88a2b71b0848b /drivers/soc/versatile | |
| parent | d430819d69a51dc4798bb98d841afa9af2f5c83a (diff) | |
| download | linux-5d87f7a314b94a8852a07d7e2260ee6db66cb29f.tar.bz2 | |
soc: versatile: add support for the PB11MPCore
The SoC driver needs a minor update to display the correct
sysfs information for the PB11MPCore.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/soc/versatile')
| -rw-r--r-- | drivers/soc/versatile/soc-realview.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/drivers/soc/versatile/soc-realview.c b/drivers/soc/versatile/soc-realview.c index e642c4540dda..c337764de867 100644 --- a/drivers/soc/versatile/soc-realview.c +++ b/drivers/soc/versatile/soc-realview.c @@ -36,6 +36,8 @@ static const char *realview_board_str(u32 id)  	switch ((id >> 16) & 0xfff) {  	case 0x0147:  		return "HBI-0147"; +	case 0x0159: +		return "HBI-0159";  	default:  		return "Unknown";  	} @@ -44,6 +46,8 @@ static const char *realview_board_str(u32 id)  static const char *realview_arch_str(u32 id)  {  	switch ((id >> 8) & 0xf) { +	case 0x04: +		return "AHB";  	case 0x05:  		return "Multi-layer AXI";  	default: |