board.h
来自「Linux内核源代码 为压缩文件 是<<Linux内核>>」· C头文件 代码 · 共 45 行
H
45 行
/* * * 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 __cplusplusextern "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__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?