Changeset f44ba92 in mainline for uspace/drv/bus/isa/isa.c


Ignore:
Timestamp:
2011-12-10T01:31:40Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ee163b3
Parents:
979c5729
Message:

isa: Do not use hexadecimal numbers for irqs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/isa/isa.c

    r979c5729 rf44ba92  
    299299
    300300        val = skip_spaces(val);
    301         irq = (int)strtol(val, &end, 0x10);
     301        irq = (int)strtol(val, &end, 10);
    302302
    303303        if (val != end)
Note: See TracChangeset for help on using the changeset viewer.