blob: eeba067d565f4470937da6a40a61dcaf8caaae18 [file] [log] [blame]
Adrian Bunkf30828a2008-07-17 21:16:08 +02001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * init.c: Initialize internal variables used by the PROM
3 * library functions.
4 *
5 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/kernel.h>
9#include <linux/init.h>
10
11#include <asm/openprom.h>
12#include <asm/oplib.h>
13
14struct linux_romvec *romvec;
15enum prom_major_version prom_vers;
16unsigned int prom_rev, prom_prev;
17
18/* The root node of the prom device tree. */
19int prom_root_node;
20
21/* Pointer to the device tree operations structure. */
22struct linux_nodeops *prom_nodeops;
23
24/* You must call prom_init() before you attempt to use any of the
Geert Uytterhoevend670b472012-06-20 15:55:10 +020025 * routines in the prom library.
26 * It gets passed the pointer to the PROM vector.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029void __init prom_init(struct linux_romvec *rp)
30{
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 romvec = rp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33 /* Initialization successful. */
34 return;
35}