root/arch/sparc/kernel/promops.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. init_prom

   1 /* promops.c:  Prom node tree operations and Prom Vector initialization
   2  *             initialization routines.
   3  *
   4  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
   5  */
   6 
   7 #include <asm/openprom.h>
   8 
   9 extern struct linux_romvec *romvec;
  10 
  11 /* This gets called from head.S upon bootup to initialize the
  12  * prom vector pointer for the rest of the kernel.
  13  */
  14 
  15 void
  16 init_prom(struct linux_romvec *r_ptr)
     /* [previous][next][first][last][top][bottom][index][help] */
  17 {
  18   romvec = r_ptr;
  19   
  20   return;
  21 }

/* [previous][next][first][last][top][bottom][index][help] */