diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-11 19:45:29 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-11 19:45:29 +0000 |
commit | 0ea3222fb70c596dc5798f2e1db2b6698354ada9 (patch) | |
tree | f103b881a4bb2aeafe44ea5251ff8d61c5249e91 /sys/dev/ic/rt2661.c | |
parent | 24dc6033bb5e10e9a21d280b2d03080b5e7c06c2 (diff) |
lint is gone, and the 'lint' conditional was never in the implementation
namespace, so stop changing behavior when it's #defined
ok beck@ krw@
Diffstat (limited to 'sys/dev/ic/rt2661.c')
-rw-r--r-- | sys/dev/ic/rt2661.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/rt2661.c b/sys/dev/ic/rt2661.c index e154f461c85..393b84cadb5 100644 --- a/sys/dev/ic/rt2661.c +++ b/sys/dev/ic/rt2661.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rt2661.c,v 1.70 2013/12/06 21:03:03 deraadt Exp $ */ +/* $OpenBSD: rt2661.c,v 1.71 2014/03/11 19:45:28 guenther Exp $ */ /*- * Copyright (c) 2006 @@ -273,7 +273,7 @@ rt2661_attachhook(void *xsc) struct rt2661_softc *sc = xsc; struct ieee80211com *ic = &sc->sc_ic; struct ifnet *ifp = &ic->ic_if; - const char *name = NULL; /* make lint happy */ + const char *name = NULL; int i, error; switch (sc->sc_id) { |