diff options
author | Jens Kuske <jenskuske@gmail.com> | 2015-11-17 15:12:58 +0100 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-11-22 11:30:59 +0100 |
commit | 1c27b7dcd06e605ed042d928665d26edab8429e4 (patch) | |
tree | 9165f3d128e1cd28443be9d72e06ad3f847e83ae /arch/arm/cpu/armv7/sunxi/cpu_info.c | |
parent | 6047a3a9c9cf88c38b0b7b99bfeb4edf6661acc8 (diff) |
sunxi: Add basic H3 support
Add initial sun8i H3 support, only uart + mmc are supported for now.
Signed-off-by: Jens Kuske <jenskuske@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'arch/arm/cpu/armv7/sunxi/cpu_info.c')
-rw-r--r-- | arch/arm/cpu/armv7/sunxi/cpu_info.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/sunxi/cpu_info.c b/arch/arm/cpu/armv7/sunxi/cpu_info.c index 05fef3216d..1e73332d7e 100644 --- a/arch/arm/cpu/armv7/sunxi/cpu_info.c +++ b/arch/arm/cpu/armv7/sunxi/cpu_info.c @@ -69,6 +69,8 @@ int print_cpuinfo(void) puts("CPU: Allwinner A23 (SUN8I)\n"); #elif defined CONFIG_MACH_SUN8I_A33 puts("CPU: Allwinner A33 (SUN8I)\n"); +#elif defined CONFIG_MACH_SUN8I_H3 + puts("CPU: Allwinner H3 (SUN8I)\n"); #elif defined CONFIG_MACH_SUN9I puts("CPU: Allwinner A80 (SUN9I)\n"); #else |