Changeset 677a6d5 in mainline for arch/ia32/src/drivers/ega.c


Ignore:
Timestamp:
2006-01-08T16:24:32Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f275cb3
Parents:
59adc2b
Message:

Memory management work.
Pass address space identifier to functions in page_operations to support single global page hash table.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/drivers/ega.c

    r59adc2b r677a6d5  
    3030#include <putchar.h>
    3131#include <mm/page.h>
     32#include <mm/asid.h>
    3233#include <arch/mm/page.h>
    3334#include <synch/spinlock.h>
     
    5960        __u8 hi, lo;
    6061
    61         page_mapping_insert(PA2KA(VIDEORAM), VIDEORAM, PAGE_NOT_CACHEABLE, 0);
     62        page_mapping_insert(PA2KA(VIDEORAM), ASID_KERNEL, VIDEORAM, PAGE_NOT_CACHEABLE, 0);
    6263        outb(0x3d4,0xe);
    6364        hi = inb(0x3d5);
Note: See TracChangeset for help on using the changeset viewer.