Re: [PATCH] fix typo in if_aue.c

2018-07-02 Thread Rob Pierce
Ok rob@ 

> From: "Kevin Lo" 
> To: "tech" 
> Sent: Monday, July 2, 2018 10:23:39 AM
> Subject: [PATCH] fix typo in if_aue.c

> Hi,

> I've just noticed a little typo in the if_aue.c (s/read/write).
> The diff is below.

> Index: sys/dev/usb/if_aue.c
> ===
> RCS file: /cvs/src/sys/dev/usb/if_aue.c,v
> retrieving revision 1.106
> diff -u -p -u -p -r1.106 if_aue.c
> --- sys/dev/usb/if_aue.c 22 Jan 2017 10:17:39 - 1.106
> +++ sys/dev/usb/if_aue.c 2 Jul 2018 14:19:57 -
> @@ -509,7 +509,7 @@ aue_miibus_writereg(struct device *dev,
> }

> if (i == AUE_TIMEOUT) {
> - printf("%s: MII read timed out\n",
> + printf("%s: MII write timed out\n",
> sc->aue_dev.dv_xname);
> }
> aue_unlock_mii(sc);


[PATCH] fix typo in if_aue.c

2018-07-02 Thread Kevin Lo
Hi,

I've just noticed a little typo in the if_aue.c (s/read/write).
The diff is below.

Index: sys/dev/usb/if_aue.c
===
RCS file: /cvs/src/sys/dev/usb/if_aue.c,v
retrieving revision 1.106
diff -u -p -u -p -r1.106 if_aue.c
--- sys/dev/usb/if_aue.c22 Jan 2017 10:17:39 -  1.106
+++ sys/dev/usb/if_aue.c2 Jul 2018 14:19:57 -
@@ -509,7 +509,7 @@ aue_miibus_writereg(struct device *dev, 
}
 
if (i == AUE_TIMEOUT) {
-   printf("%s: MII read timed out\n",
+   printf("%s: MII write timed out\n",
sc->aue_dev.dv_xname);
}
aue_unlock_mii(sc);