Changeset c56c5b5b in mainline


Ignore:
Timestamp:
2011-03-21T21:00:31Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c01cd32
Parents:
e099f26
Message:

Minor fixes resulting from the previous big merge

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci-hcd/transfer_list.c

    re099f26 rc56c5b5b  
    110110                last_qh = batch_qh(last);
    111111        }
    112         const uint32_t pa = addr_to_phys(batch->qh);
     112        const uint32_t pa = addr_to_phys(batch_qh(batch));
    113113        assert((pa & LINK_POINTER_ADDRESS_MASK) == pa);
    114114
     
    205205                /* I'm the first one here */
    206206                assert((instance->queue_head->next & LINK_POINTER_ADDRESS_MASK)
    207                     == addr_to_phys(bathc_qh(batch)));
     207                    == addr_to_phys(batch_qh(batch)));
    208208                instance->queue_head->next = batch_qh(batch)->next;
    209209                qpos = "FIRST";
     
    219219        list_remove(&batch->link);
    220220        usb_log_debug("Batch(%p) removed (%s) from %s, next %x.\n",
    221             batch, pos, instance->name, batch_qh(batch)->next);
     221            batch, qpos, instance->name, batch_qh(batch)->next);
    222222}
    223223/**
Note: See TracChangeset for help on using the changeset viewer.