From cd3ee9e825d027fdda8938910c0c9323964e2443 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Mon, 19 Oct 2020 18:55:04 +0200 Subject: [PATCH] drivers/mii: fix typo 'auto-negotation' => 'auto-negotiation' --- drivers/include/mii.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/include/mii.h b/drivers/include/mii.h index 8aca59674f..336f564041 100644 --- a/drivers/include/mii.h +++ b/drivers/include/mii.h @@ -64,7 +64,7 @@ extern "C" { #define MII_BMCR_POWER_DOWN BIT11 /**< Set to power down PHY */ #define MII_BMCR_ISOLATE BIT10 /**< Set to electrically isolate PHY from MII (PHY becomes inoperational) */ -#define MII_BMCR_AN_RESTART BIT9 /**< Set to restart auto-negotation */ +#define MII_BMCR_AN_RESTART BIT9 /**< Set to restart auto-negotiation */ #define MII_BMCR_FULL_DPLX BIT8 /**< Set for full duplex */ #define MII_BMCR_HALF_DPLX (0) /**< Set for half duplex */ #define MII_BMCR_COLL_TEST BIT7 /**< Set to enable collision signal test */