source: rtems/c/src/lib/libbsp/mips/malta/startup/inittlb.c @ 2681fc4

4.115
Last change on this file since 2681fc4 was 2681fc4, checked in by Joel Sherrill <joel.sherrill@…>, on 10/16/14 at 20:12:42

mips/malta: Fix warnings

  • Property mode set to 100644
File size: 464 bytes
Line 
1/**
2 *  @file
3 */
4
5/*
6 *  COPYRIGHT (c) 1989-2012.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.org/license/LICENSE.
12 */
13
14#include <bsp.h>
15#include <rtems/mips/idtcpu.h>
16
17extern void resettlb( int i );
18
19void init_tlb(void);
20
21void init_tlb(void)
22{
23  int i;
24
25  for (i = 0; i < N_TLB_ENTRIES; i++ )
26    resettlb(i);
27}
Note: See TracBrowser for help on using the repository browser.