Author: weongyo
Date: Tue Feb 23 19:44:51 2010
New Revision: 204256
URL: http://svn.freebsd.org/changeset/base/204256

Log:
  fixes a compile error; invalid type argument of '->'.

Modified:
  head/sys/dev/bwn/if_bwn.c

Modified: head/sys/dev/bwn/if_bwn.c
==============================================================================
--- head/sys/dev/bwn/if_bwn.c   Tue Feb 23 19:37:00 2010        (r204255)
+++ head/sys/dev/bwn/if_bwn.c   Tue Feb 23 19:44:51 2010        (r204256)
@@ -5969,7 +5969,7 @@ bwn_lo_write(struct bwn_mac *mac, struct
 {
        uint16_t value;
 
-       KASSERT(mac->mac_phy->type == BWN_PHYTYPE_G,
+       KASSERT(mac->mac_phy.type == BWN_PHYTYPE_G,
            ("%s:%d: fail", __func__, __LINE__));
 
        value = (uint8_t) (ctl->q);
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to