Changeset e32e092 in mainline for kernel/arch/ia64/src/drivers/ega.c


Ignore:
Timestamp:
2008-06-06T07:34:21Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
eb1c0a3
Parents:
40257f5
Message:

Declare arguments for memstr.h operations as pointers instead of uintptr_t.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/drivers/ega.c

    r40257f5 re32e092  
    7272         * Clear the screen.
    7373         */
    74         _memsetw((uintptr_t) videoram, SCREEN, 0x0720);
     74        _memsetw(videoram, SCREEN, 0x0720);     
    7575
    7676        chardev_initialize("ega_out", &ega_console, &ega_ops);
     
    103103
    104104        memcpy((void *) videoram, (void *) (videoram + ROW * 2), (SCREEN - ROW) * 2);
    105         _memsetw((uintptr_t) (videoram + (SCREEN - ROW) * 2), ROW, 0x0720);
     105        _memsetw(videoram + (SCREEN - ROW) * 2, ROW, 0x0720);
    106106        ega_cursor = ega_cursor - ROW;
    107107}
Note: See TracChangeset for help on using the changeset viewer.