Changeset a4666a9 in mainline for uspace/drv/nic/rtl8169/driver.c


Ignore:
Timestamp:
2014-09-01T12:17:45Z (10 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5713e5f
Parents:
c62a8275
Message:

Fix clearing of the RCR_ACCEPT_BROADCAST bit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/nic/rtl8169/driver.c

    rc62a8275 ra4666a9  
    922922        switch (mode) {
    923923        case NIC_BROADCAST_BLOCKED:
    924                 rcr &= RCR_ACCEPT_BROADCAST;
     924                rcr &= ~RCR_ACCEPT_BROADCAST;
    925925                break;
    926926        case NIC_BROADCAST_ACCEPTED:
Note: See TracChangeset for help on using the changeset viewer.