mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
aspeed/hace: Add missing newlines to unimp messages
Signed-off-by: Joel Stanley <joel@jms.id.au> Reviewed-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
33e30f11c7
commit
87893cb5f5
1 changed files with 2 additions and 2 deletions
|
@ -340,12 +340,12 @@ static void aspeed_hace_write(void *opaque, hwaddr addr, uint64_t data,
|
||||||
|
|
||||||
if ((data & HASH_HMAC_MASK)) {
|
if ((data & HASH_HMAC_MASK)) {
|
||||||
qemu_log_mask(LOG_UNIMP,
|
qemu_log_mask(LOG_UNIMP,
|
||||||
"%s: HMAC engine command mode %"PRIx64" not implemented",
|
"%s: HMAC engine command mode %"PRIx64" not implemented\n",
|
||||||
__func__, (data & HASH_HMAC_MASK) >> 8);
|
__func__, (data & HASH_HMAC_MASK) >> 8);
|
||||||
}
|
}
|
||||||
if (data & BIT(1)) {
|
if (data & BIT(1)) {
|
||||||
qemu_log_mask(LOG_UNIMP,
|
qemu_log_mask(LOG_UNIMP,
|
||||||
"%s: Cascaded mode not implemented",
|
"%s: Cascaded mode not implemented\n",
|
||||||
__func__);
|
__func__);
|
||||||
}
|
}
|
||||||
algo = hash_algo_lookup(data);
|
algo = hash_algo_lookup(data);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue