Module Name: src
Committed By: jmcneill
Date: Thu Sep 7 21:36:20 UTC 2017
Modified Files:
src/sys/arch/arm/sunxi: sunxi_emac.c
Log Message:
Fix a typo that prevented ahb reset from ever being deasserted.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/arm/sunxi/sunxi_emac.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/sunxi/sunxi_emac.c
diff -u src/sys/arch/arm/sunxi/sunxi_emac.c:1.5 src/sys/arch/arm/sunxi/sunxi_emac.c:1.6
--- src/sys/arch/arm/sunxi/sunxi_emac.c:1.5 Thu Sep 7 01:07:04 2017
+++ src/sys/arch/arm/sunxi/sunxi_emac.c Thu Sep 7 21:36:19 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: sunxi_emac.c,v 1.5 2017/09/07 01:07:04 jmcneill Exp $ */
+/* $NetBSD: sunxi_emac.c,v 1.6 2017/09/07 21:36:19 jmcneill Exp $ */
/*-
* Copyright (c) 2016-2017 Jared McNeill <[email protected]>
@@ -33,7 +33,7 @@
#include "opt_net_mpsafe.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunxi_emac.c,v 1.5 2017/09/07 01:07:04 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunxi_emac.c,v 1.6 2017/09/07 21:36:19 jmcneill Exp $");
#include <sys/param.h>
#include <sys/bus.h>
@@ -1285,7 +1285,7 @@ sunxi_emac_get_resources(struct sunxi_em
if ((sc->rst_ahb = fdtbus_reset_get(phandle, "ahb")) == NULL)
return ENXIO;
- sc->rst_ahb = fdtbus_reset_get(phandle, "ephy");
+ sc->rst_ephy = fdtbus_reset_get(phandle, "ephy");
/* Regulator is optional */
sc->reg_phy = fdtbus_regulator_acquire(phandle, "phy-supply");