diff mbox series

sbsa-ref: remove cortex-a53 from list of supported cpus

Message ID 20210211122022.1811362-1-marcin.juszkiewicz@linaro.org
State Superseded
Headers show
Series sbsa-ref: remove cortex-a53 from list of supported cpus | expand

Commit Message

Marcin Juszkiewicz Feb. 11, 2021, 12:20 p.m. UTC
Cortex-A53 supports 40bits of address space. sbsa-ref's memory starts
above this limit.
---
 hw/arm/sbsa-ref.c | 1 -
 1 file changed, 1 deletion(-)

-- 
2.29.2

Comments

no-reply@patchew.org Feb. 11, 2021, 12:24 p.m. UTC | #1
Patchew URL: https://patchew.org/QEMU/20210211122022.1811362-1-marcin.juszkiewicz@linaro.org/



Hi,

This series seems to have some coding style problems. See output below for
more information:

Type: series
Message-id: 20210211122022.1811362-1-marcin.juszkiewicz@linaro.org
Subject: [PATCH] sbsa-ref: remove cortex-a53 from list of supported cpus

=== TEST SCRIPT BEGIN ===
#!/bin/bash
git rev-parse base > /dev/null || exit 0
git config --local diff.renamelimit 0
git config --local diff.renames True
git config --local diff.algorithm histogram
./scripts/checkpatch.pl --mailback base..
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
 * [new tag]         patchew/20210211122022.1811362-1-marcin.juszkiewicz@linaro.org -> patchew/20210211122022.1811362-1-marcin.juszkiewicz@linaro.org
Switched to a new branch 'test'
81ea75b sbsa-ref: remove cortex-a53 from list of supported cpus

=== OUTPUT BEGIN ===
ERROR: Missing Signed-off-by: line(s)

total: 1 errors, 0 warnings, 7 lines checked

Commit 81ea75b7e8bb (sbsa-ref: remove cortex-a53 from list of supported cpus) has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
=== OUTPUT END ===

Test command exited with code: 1


The full log is available at
http://patchew.org/logs/20210211122022.1811362-1-marcin.juszkiewicz@linaro.org/testing.checkpatch/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com
diff mbox series

Patch

diff --git hw/arm/sbsa-ref.c hw/arm/sbsa-ref.c
index 9f70735153..276243d122 100644
--- hw/arm/sbsa-ref.c
+++ hw/arm/sbsa-ref.c
@@ -145,7 +145,6 @@  static const int sbsa_ref_irqmap[] = {
 };
 
 static const char * const valid_cpus[] = {
-    ARM_CPU_TYPE_NAME("cortex-a53"),
     ARM_CPU_TYPE_NAME("cortex-a57"),
     ARM_CPU_TYPE_NAME("cortex-a72"),
 };