Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm/sunxi Fix typo -- acknowledge interrupts _and_ ...
details: https://anonhg.NetBSD.org/src/rev/e287915f55e5
branches: trunk
changeset: 466199:e287915f55e5
user: riastradh <riastradh%NetBSD.org@localhost>
date: Sun Dec 15 01:16:33 2019 +0000
description:
Fix typo -- acknowledge interrupts _and_ errors.
diffstat:
sys/arch/arm/sunxi/sun8i_crypto.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r ac44b7bc77ab -r e287915f55e5 sys/arch/arm/sunxi/sun8i_crypto.c
--- a/sys/arch/arm/sunxi/sun8i_crypto.c Sun Dec 15 01:00:58 2019 +0000
+++ b/sys/arch/arm/sunxi/sun8i_crypto.c Sun Dec 15 01:16:33 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sun8i_crypto.c,v 1.7 2019/12/10 22:30:34 riastradh Exp $ */
+/* $NetBSD: sun8i_crypto.c,v 1.8 2019/12/15 01:16:33 riastradh Exp $ */
/*-
* Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: sun8i_crypto.c,v 1.7 2019/12/10 22:30:34 riastradh Exp $");
+__KERNEL_RCSID(1, "$NetBSD: sun8i_crypto.c,v 1.8 2019/12/15 01:16:33 riastradh Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -671,7 +671,7 @@
isr = sun8i_crypto_read(sc, SUN8I_CRYPTO_ISR);
esr = sun8i_crypto_read(sc, SUN8I_CRYPTO_ESR);
sun8i_crypto_write(sc, SUN8I_CRYPTO_ISR, isr);
- sun8i_crypto_write(sc, SUN8I_CRYPTO_ISR, esr);
+ sun8i_crypto_write(sc, SUN8I_CRYPTO_ESR, esr);
/* Start the worker if necessary. */
sun8i_crypto_schedule_worker(sc);
Home |
Main Index |
Thread Index |
Old Index