Print this page
3217 cfgadm should spell "adaptors" correctly
Reviewed by: Alexander Eremin <alexander.r.eremin@gmail.com>
Reviewed by: David Hoeppner <0xffea@gmail.com>
Reviewed by: Gary Mills <gary_mills@fastmail.fm>
Reviewed by: Eric Schrock <Eric.Schrock@delphix.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/io/ipw/ipw2100.c
          +++ new/usr/src/uts/common/io/ipw/ipw2100.c
↓ open down ↓ 1265 lines elided ↑ open up ↑
1266 1266   */
1267 1267  static int
1268 1268  ipw2100_chip_reset(struct ipw2100_softc *sc)
1269 1269  {
1270 1270          int             ntries;
1271 1271          uint32_t        tmp;
1272 1272  
1273 1273          ipw2100_master_stop(sc);
1274 1274  
1275 1275          /*
1276      -         * move adatper to DO state
     1276 +         * move adapter to DO state
1277 1277           */
1278 1278          tmp = ipw2100_csr_get32(sc, IPW2100_CSR_CTL);
1279 1279          ipw2100_csr_put32(sc, IPW2100_CSR_CTL, tmp | IPW2100_CTL_INIT);
1280 1280  
1281 1281          /*
1282 1282           * wait for clock stabilization
1283 1283           */
1284 1284          for (ntries = 0; ntries < 1000; ntries++) {
1285 1285                  if (ipw2100_csr_get32(sc, IPW2100_CSR_CTL)
1286 1286                      & IPW2100_CTL_CLOCK_READY)
↓ open down ↓ 1646 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX