Changeset 6b781c0 in mainline for kernel/arch/arm32/src/mm/as.c


Ignore:
Timestamp:
2007-06-08T15:02:49Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c03ee1c
Parents:
3ee8a075
Message:

Merge arm32 into trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/mm/as.c

    r3ee8a075 r6b781c0  
    11/*
    2  * Copyright (c) 2005 Jakub Jermar
     2 * Copyright (c) 2007 Pavel Jancik, Michal Kebrt
    33 * All rights reserved.
    44 *
     
    3131 */
    3232/** @file
     33 *  @brief Address space functions.
    3334 */
    3435
     
    3940#include <arch.h>
    4041
    41 /** Architecture dependent address space init. */
     42/** Architecture dependent address space init.
     43 * 
     44 *  Since ARM supports page tables, #as_pt_operations are used.
     45 */
    4246void as_arch_init(void)
    4347{
    44         as_operations = &as_pt_operations;
    45         asid_fifo_init();
    46 }
    47 
    48 /** Install address space.
    49  *
    50  * Install ASID.
    51  *
    52  * @param as Address space structure.
    53  */
    54 void as_install_arch(as_t *as)
    55 {
    56         /* TODO */
     48        as_operations = &as_pt_operations;
    5749}
    5850
Note: See TracChangeset for help on using the changeset viewer.