Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
094167be
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
094167be
编写于
6月 13, 2009
作者:
M
Mike Frysinger
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Blackfin: convert simple headers to asm-generic
Signed-off-by:
N
Mike Frysinger
<
vapier@gentoo.org
>
上级
3be5646c
变更
20
隐藏空白更改
内联
并排
Showing
20 changed file
with
10 addition
and
170 deletion
+10
-170
arch/blackfin/include/asm/auxvec.h
arch/blackfin/include/asm/auxvec.h
+1
-4
arch/blackfin/include/asm/bugs.h
arch/blackfin/include/asm/bugs.h
+1
-16
arch/blackfin/include/asm/cputime.h
arch/blackfin/include/asm/cputime.h
+0
-5
arch/blackfin/include/asm/current.h
arch/blackfin/include/asm/current.h
+1
-23
arch/blackfin/include/asm/device.h
arch/blackfin/include/asm/device.h
+0
-6
arch/blackfin/include/asm/emergency-restart.h
arch/blackfin/include/asm/emergency-restart.h
+0
-5
arch/blackfin/include/asm/errno.h
arch/blackfin/include/asm/errno.h
+1
-6
arch/blackfin/include/asm/fb.h
arch/blackfin/include/asm/fb.h
+1
-12
arch/blackfin/include/asm/futex.h
arch/blackfin/include/asm/futex.h
+0
-5
arch/blackfin/include/asm/hw_irq.h
arch/blackfin/include/asm/hw_irq.h
+1
-6
arch/blackfin/include/asm/kmap_types.h
arch/blackfin/include/asm/kmap_types.h
+0
-5
arch/blackfin/include/asm/local.h
arch/blackfin/include/asm/local.h
+0
-5
arch/blackfin/include/asm/param.h
arch/blackfin/include/asm/param.h
+1
-22
arch/blackfin/include/asm/percpu.h
arch/blackfin/include/asm/percpu.h
+0
-5
arch/blackfin/include/asm/pgalloc.h
arch/blackfin/include/asm/pgalloc.h
+1
-8
arch/blackfin/include/asm/resource.h
arch/blackfin/include/asm/resource.h
+0
-5
arch/blackfin/include/asm/serial.h
arch/blackfin/include/asm/serial.h
+1
-5
arch/blackfin/include/asm/setup.h
arch/blackfin/include/asm/setup.h
+1
-17
arch/blackfin/include/asm/statfs.h
arch/blackfin/include/asm/statfs.h
+0
-5
arch/blackfin/include/asm/topology.h
arch/blackfin/include/asm/topology.h
+0
-5
未找到文件。
arch/blackfin/include/asm/auxvec.h
浏览文件 @
094167be
#ifndef __ASMBFIN_AUXVEC_H
#define __ASMBFIN_AUXVEC_H
#endif
#include <asm-generic/auxvec.h>
arch/blackfin/include/asm/bugs.h
浏览文件 @
094167be
/*
* include/asm-blackfin/bugs.h
*
* Copyright (C) 1994 Linus Torvalds
*/
/*
* This is included by init/main.c to check for architecture-dependent bugs.
*
* Needs:
* void check_bugs(void);
*/
static
void
check_bugs
(
void
)
{
}
#include <asm-generic/bugs.h>
arch/blackfin/include/asm/cputime.h
浏览文件 @
094167be
#ifndef __BLACKFIN_CPUTIME_H
#define __BLACKFIN_CPUTIME_H
#include <asm-generic/cputime.h>
#endif
/* __BLACKFIN_CPUTIME_H */
arch/blackfin/include/asm/current.h
浏览文件 @
094167be
#ifndef _BLACKFIN_CURRENT_H
#define _BLACKFIN_CURRENT_H
/*
* current.h
* (C) Copyright 2000, Lineo, David McCullough <davidm@lineo.com>
*
* rather than dedicate a register (as the m68k source does), we
* just keep a global, we should probably just change it all to be
* current and lose _current_task.
*/
#include <linux/thread_info.h>
struct
task_struct
;
static
inline
struct
task_struct
*
get_current
(
void
)
__attribute__
((
__const__
));
static
inline
struct
task_struct
*
get_current
(
void
)
{
return
(
current_thread_info
()
->
task
);
}
#define current (get_current())
#endif
/* _BLACKFIN_CURRENT_H */
#include <asm-generic/current.h>
arch/blackfin/include/asm/device.h
浏览文件 @
094167be
/*
* Arch specific extensions to struct device
*
* This file is released under the GPLv2
*/
#include <asm-generic/device.h>
arch/blackfin/include/asm/emergency-restart.h
浏览文件 @
094167be
#ifndef _ASM_EMERGENCY_RESTART_H
#define _ASM_EMERGENCY_RESTART_H
#include <asm-generic/emergency-restart.h>
#endif
/* _ASM_EMERGENCY_RESTART_H */
arch/blackfin/include/asm/errno.h
浏览文件 @
094167be
#ifndef _BFIN_ERRNO_H
#define _BFIN_ERRNO_H
#include<asm-generic/errno.h>
#endif
/* _BFIN_ERRNO_H */
#include <asm-generic/errno.h>
arch/blackfin/include/asm/fb.h
浏览文件 @
094167be
#ifndef _ASM_FB_H_
#define _ASM_FB_H_
#include <linux/fb.h>
#define fb_pgprotect(...) do {} while (0)
static
inline
int
fb_is_primary_device
(
struct
fb_info
*
info
)
{
return
0
;
}
#endif
/* _ASM_FB_H_ */
#include <asm-generic/fb.h>
arch/blackfin/include/asm/futex.h
浏览文件 @
094167be
#ifndef _ASM_FUTEX_H
#define _ASM_FUTEX_H
#include <asm-generic/futex.h>
#endif
arch/blackfin/include/asm/hw_irq.h
浏览文件 @
094167be
#ifndef __ASM_BFIN_HW_IRQ_H
#define __ASM_BFIN_HW_IRQ_H
/* Dummy include. */
#endif
#include <asm-generic/hw_irq.h>
arch/blackfin/include/asm/kmap_types.h
浏览文件 @
094167be
#ifndef _ASM_KMAP_TYPES_H
#define _ASM_KMAP_TYPES_H
#include <asm-generic/kmap_types.h>
#endif
arch/blackfin/include/asm/local.h
浏览文件 @
094167be
#ifndef __BLACKFIN_LOCAL_H
#define __BLACKFIN_LOCAL_H
#include <asm-generic/local.h>
#endif
/* __BLACKFIN_LOCAL_H */
arch/blackfin/include/asm/param.h
浏览文件 @
094167be
#ifndef _BLACKFIN_PARAM_H
#define _BLACKFIN_PARAM_H
#ifdef __KERNEL__
#define HZ CONFIG_HZ
#define USER_HZ 100
#define CLOCKS_PER_SEC (USER_HZ)
#endif
#ifndef HZ
#define HZ 100
#endif
#define EXEC_PAGESIZE 4096
#ifndef NOGROUP
#define NOGROUP (-1)
#endif
#define MAXHOSTNAMELEN 64
/* max length of hostname */
#endif
/* _BLACKFIN_PARAM_H */
#include <asm-generic/param.h>
arch/blackfin/include/asm/percpu.h
浏览文件 @
094167be
#ifndef __ARCH_BLACKFIN_PERCPU__
#define __ARCH_BLACKFIN_PERCPU__
#include <asm-generic/percpu.h>
#endif
/* __ARCH_BLACKFIN_PERCPU__ */
arch/blackfin/include/asm/pgalloc.h
浏览文件 @
094167be
#ifndef _BLACKFIN_PGALLOC_H
#define _BLACKFIN_PGALLOC_H
#include <asm/setup.h>
#define check_pgt_cache() do { } while (0)
#endif
/* _BLACKFIN_PGALLOC_H */
#include <asm-generic/pgalloc.h>
arch/blackfin/include/asm/resource.h
浏览文件 @
094167be
#ifndef _BFIN_RESOURCE_H
#define _BFIN_RESOURCE_H
#include <asm-generic/resource.h>
#endif
/* _BFIN_RESOURCE_H */
arch/blackfin/include/asm/serial.h
浏览文件 @
094167be
/*
* include/asm-blackfin/serial.h
*/
#include <asm-generic/serial.h>
#define SERIAL_EXTRA_IRQ_FLAGS IRQF_TRIGGER_HIGH
#define BASE_BAUD (1843200 / 16)
arch/blackfin/include/asm/setup.h
浏览文件 @
094167be
/*
** asm/setup.h -- Definition of the Linux/bfin setup information
**
** This file is subject to the terms and conditions of the GNU General Public
** License. See the file COPYING in the main directory of this archive
** for more details.
**
** Copyright Lineo, Inc 2001 Tony Kou
**
*/
#ifndef _BFIN_SETUP_H
#define _BFIN_SETUP_H
#define COMMAND_LINE_SIZE 512
#endif
/* _BFIN_SETUP_H */
#include <asm-generic/setup.h>
arch/blackfin/include/asm/statfs.h
浏览文件 @
094167be
#ifndef _BFIN_STATFS_H
#define _BFIN_STATFS_H
#include <asm-generic/statfs.h>
#endif
/* _BFIN_STATFS_H */
arch/blackfin/include/asm/topology.h
浏览文件 @
094167be
#ifndef _ASM_BLACKFIN_TOPOLOGY_H
#define _ASM_BLACKFIN_TOPOLOGY_H
#include <asm-generic/topology.h>
#endif
/* _ASM_BLACKFIN_TOPOLOGY_H */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录