Changeset 98000fb in mainline for kernel/arch/amd64/src/ddi/ddi.c


Ignore:
Timestamp:
2009-06-03T19:34:45Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
301ff30
Parents:
69e68e3
Message:

remove redundant index_t and count_t types (which were always quite ambiguous and not actually needed)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/src/ddi/ddi.c

    r69e68e3 r98000fb  
    5757int ddi_iospace_enable_arch(task_t *task, uintptr_t ioaddr, size_t size)
    5858{
    59         count_t bits;
     59        size_t bits;
    6060       
    6161        bits = ioaddr + size;
     
    9999         * Enable the range and we are done.
    100100         */
    101         bitmap_clear_range(&task->arch.iomap, (index_t) ioaddr, (count_t) size);
     101        bitmap_clear_range(&task->arch.iomap, (size_t) ioaddr, (size_t) size);
    102102       
    103103        /*
     
    118118void io_perm_bitmap_install(void)
    119119{
    120         count_t bits;
     120        size_t bits;
    121121        ptr_16_64_t cpugdtr;
    122122        descriptor_t *gdt_p;
    123123        tss_descriptor_t *tss_desc;
    124         count_t ver;
     124        size_t ver;
    125125       
    126126        /* First, copy the I/O Permission Bitmap. */
Note: See TracChangeset for help on using the changeset viewer.