ibm44x_common.h

来自「linux-2.4.29操作系统的源码」· C头文件 代码 · 共 37 行

H
37
字号
/* * arch/ppc/kernel/ibm44x_common.h * * PPC44x system library * * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net> * Copyright (c) 2003 Zultys Technologies * * This program is free software; you can redistribute  it and/or modify it * under  the terms of  the GNU General  Public License as published by the * Free Software Foundation;  either version 2 of the  License, or (at your * option) any later version. * */#ifdef __KERNEL__#ifndef __PPC_SYSLIB_IBM44x_COMMON_H#define __PPC_SYSLIB_IBM44x_COMMON_H#ifndef __ASSEMBLY__/* * All clocks are in Hz */struct ibm44x_clocks {	unsigned int vco;	/* VCO, 0 if system PLL is bypassed */	unsigned int cpu;	/* CPUCoreClk */	unsigned int plb;	/* PLBClk */	unsigned int opb;	/* OPBClk */	unsigned int ebc;	/* PerClk */	unsigned int uart0;	unsigned int uart1;};#endif /* __ASSEMBLY__ */#endif /* __PPC_SYSLIB_IBM44x_COMMON_H */#endif /* __KERNEL__ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?