Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
/*
 * BK Id: SCCS/s.board.h 1.5 05/17/01 18:14:24 cort
 */
/*
 *
 *    Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
 *
 *    Module name: board.h
 *
 *    Description:
 *	A generic include file which pulls in appropriate include files
 *      for specific board types based on configuration settings.
 *
 */

#ifdef __KERNEL__
#ifndef __BOARD_H__
#define	__BOARD_H__

#include <linux/config.h>

#if defined(CONFIG_OAK)
#include <asm/oak.h>
#endif

#if defined(CONFIG_WALNUT)
#include <asm/walnut.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif

/*
 * The "residual" board information structure the boot loader passes
 * into the kernel.
 */

extern unsigned char __res[];


#ifdef __cplusplus
}
#endif

#endif /* __BOARD_H__ */
#endif /* __KERNEL__ */