diff options
author | 2015-08-25 13:13:12 +0000 | |
---|---|---|
committer | 2015-08-25 13:13:12 +0000 | |
commit | 06a810ec618b527a8b2c6b64fad084aaea122b15 (patch) | |
tree | 27effda0839564629ec64d5c7b76632ba20fa853 | |
parent | #if INET && INET6 -> #ifdef INET6, the kernel no longer defines INET (diff) | |
download | wireguard-openbsd-06a810ec618b527a8b2c6b64fad084aaea122b15.tar.xz wireguard-openbsd-06a810ec618b527a8b2c6b64fad084aaea122b15.zip |
Put the device name into the timeout message. OK jsg@
-rw-r--r-- | sys/arch/armv7/omap/if_cpsw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/armv7/omap/if_cpsw.c b/sys/arch/armv7/omap/if_cpsw.c index 136bdae1b91..e85bb00bfd1 100644 --- a/sys/arch/armv7/omap/if_cpsw.c +++ b/sys/arch/armv7/omap/if_cpsw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cpsw.c,v 1.26 2015/06/24 09:40:53 mpi Exp $ */ +/* $OpenBSD: if_cpsw.c,v 1.27 2015/08/25 13:13:12 bmercer Exp $ */ /* $NetBSD: if_cpsw.c,v 1.3 2013/04/17 14:36:34 bouyer Exp $ */ /* @@ -613,7 +613,7 @@ cpsw_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) void cpsw_watchdog(struct ifnet *ifp) { - printf("device timeout\n"); + printf("%s: device timeout\n", ifp->if_xname); ifp->if_oerrors++; cpsw_init(ifp); |