diff options
| author | Luigi Rizzo <luigi@FreeBSD.org> | 2007-02-15 17:21:31 +0000 |
|---|---|---|
| committer | Luigi Rizzo <luigi@FreeBSD.org> | 2007-02-15 17:21:31 +0000 |
| commit | 33d5497079b6a4e3bf95a36795dbb4153ec702bb (patch) | |
| tree | 8756dca03e08a58907b842fa664348bb2f5be1b9 /sys/dev/ipw | |
| parent | 1a5f5dc0973e9307be0e0f0d33a5b727ba450a06 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ipw')
| -rw-r--r-- | sys/dev/ipw/if_ipw.c | 2 | ||||
| -rw-r--r-- | sys/dev/ipw/if_ipwvar.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ipw/if_ipw.c b/sys/dev/ipw/if_ipw.c index 69761f652fed..7534949f2268 100644 --- a/sys/dev/ipw/if_ipw.c +++ b/sys/dev/ipw/if_ipw.c @@ -1956,7 +1956,7 @@ ipw_init(void *priv) struct ipw_softc *sc = priv; struct ieee80211com *ic = &sc->sc_ic; struct ifnet *ifp = ic->ic_ifp; - struct firmware *fp; + const struct firmware *fp; const struct ipw_firmware_hdr *hdr; const char *imagename, *fw; int owned; diff --git a/sys/dev/ipw/if_ipwvar.h b/sys/dev/ipw/if_ipwvar.h index 3cfb77e017cd..c97d6a8e97bb 100644 --- a/sys/dev/ipw/if_ipwvar.h +++ b/sys/dev/ipw/if_ipwvar.h @@ -99,7 +99,7 @@ struct ipw_softc { bus_space_tag_t sc_st; bus_space_handle_t sc_sh; void *sc_ih; - struct firmware *sc_firmware; + const struct firmware *sc_firmware; int sc_tx_timer; |
