Ignore:
Timestamp:
2010-03-07T15:11:56Z (14 years ago)
Author:
Lukas Mejdrech <lukasmejdrech@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aadf01e
Parents:
2e99277 (diff), 137691a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes, revision 308

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/drivers/i8042/i8042.c

    r2e99277 raa85487  
    6767        i8042_instance_t *instance = irq->instance;
    6868        i8042_t *dev = instance->i8042;
    69         uint8_t status;
    7069       
    71         if (((status = pio_read_8(&dev->status)) & i8042_BUFFER_FULL_MASK)) {
     70        if (pio_read_8(&dev->status) & i8042_BUFFER_FULL_MASK) {
    7271                uint8_t data = pio_read_8(&dev->data);
    7372                indev_push_character(instance->kbrdin, data);
Note: See TracChangeset for help on using the changeset viewer.