platform.c (90890687859ea658759e653c4e70ed7e9e1a6217) | platform.c (4e57b6817880946a3a78d5d8cad1ace363f7e449) |
---|---|
1/* 2 * arch/xtensa/kernel/platform.c 3 * 4 * Default platform functions. 5 * 6 * This file is subject to the terms and conditions of the GNU General Public 7 * License. See the file "COPYING" in the main directory of this archive 8 * for more details. --- 4 unchanged lines hidden (view full) --- 13 */ 14 15#include <linux/config.h> 16#include <linux/types.h> 17#include <linux/pci.h> 18#include <linux/time.h> 19#include <asm/platform.h> 20#include <asm/timex.h> | 1/* 2 * arch/xtensa/kernel/platform.c 3 * 4 * Default platform functions. 5 * 6 * This file is subject to the terms and conditions of the GNU General Public 7 * License. See the file "COPYING" in the main directory of this archive 8 * for more details. --- 4 unchanged lines hidden (view full) --- 13 */ 14 15#include <linux/config.h> 16#include <linux/types.h> 17#include <linux/pci.h> 18#include <linux/time.h> 19#include <asm/platform.h> 20#include <asm/timex.h> |
21#include <asm/param.h> /* HZ */ |
|
21 22#define _F(r,f,a,b) \ 23 r __platform_##f a b; \ 24 r platform_##f a __attribute__((weak, alias("__platform_"#f))) 25 26/* 27 * Default functions that are used if no platform specific function is defined. 28 * (Please, refer to include/asm-xtensa/platform.h for more information) --- 21 unchanged lines hidden --- | 22 23#define _F(r,f,a,b) \ 24 r __platform_##f a b; \ 25 r platform_##f a __attribute__((weak, alias("__platform_"#f))) 26 27/* 28 * Default functions that are used if no platform specific function is defined. 29 * (Please, refer to include/asm-xtensa/platform.h for more information) --- 21 unchanged lines hidden --- |