Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
7fc54fd3
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7fc54fd3
编写于
10月 26, 2012
作者:
T
Tony Lindgren
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'omap-for-v3.8/cleanup-headers' into omap-for-v3.8/cleanup-prcm
上级
8634155e
a0212796
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
30 addition
and
17 deletion
+30
-17
arch/arm/mach-omap1/fpga.c
arch/arm/mach-omap1/fpga.c
+1
-0
arch/arm/mach-omap1/pm_bus.c
arch/arm/mach-omap1/pm_bus.c
+2
-0
arch/arm/mach-omap2/board-h4.c
arch/arm/mach-omap2/board-h4.c
+1
-1
arch/arm/mach-omap2/board-n8x0.c
arch/arm/mach-omap2/board-n8x0.c
+1
-1
drivers/mfd/menelaus.c
drivers/mfd/menelaus.c
+1
-1
drivers/mtd/onenand/omap2.c
drivers/mtd/onenand/omap2.c
+24
-12
include/linux/mfd/menelaus.h
include/linux/mfd/menelaus.h
+0
-2
未找到文件。
arch/arm/mach-omap1/fpga.c
浏览文件 @
7fc54fd3
...
...
@@ -32,6 +32,7 @@
#include <mach/hardware.h>
#include "iomap.h"
#include "common.h"
static
void
fpga_mask_irq
(
struct
irq_data
*
d
)
{
...
...
arch/arm/mach-omap1/pm_bus.c
浏览文件 @
7fc54fd3
...
...
@@ -19,6 +19,8 @@
#include <linux/clk.h>
#include <linux/err.h>
#include "soc.h"
#ifdef CONFIG_PM_RUNTIME
static
int
omap1_pm_runtime_suspend
(
struct
device
*
dev
)
{
...
...
arch/arm/mach-omap2/board-h4.c
浏览文件 @
7fc54fd3
...
...
@@ -26,12 +26,12 @@
#include <linux/clk.h>
#include <linux/io.h>
#include <linux/input/matrix_keypad.h>
#include <linux/mfd/menelaus.h>
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <plat/menelaus.h>
#include <plat-omap/dma-omap.h>
#include "debug-devices.h"
...
...
arch/arm/mach-omap2/board-n8x0.c
浏览文件 @
7fc54fd3
...
...
@@ -22,13 +22,13 @@
#include <linux/usb/musb.h>
#include <linux/platform_data/spi-omap2-mcspi.h>
#include <linux/platform_data/mtd-onenand-omap2.h>
#include <linux/mfd/menelaus.h>
#include <sound/tlv320aic3x.h>
#include <asm/mach/arch.h>
#include <asm/mach-types.h>
#include "common.h"
#include <plat/menelaus.h>
#include "mmc.h"
#include "mux.h"
...
...
drivers/mfd/menelaus.c
浏览文件 @
7fc54fd3
...
...
@@ -41,11 +41,11 @@
#include <linux/rtc.h>
#include <linux/bcd.h>
#include <linux/slab.h>
#include <linux/mfd/menelaus.h>
#include <asm/mach/irq.h>
#include <asm/gpio.h>
#include <plat/menelaus.h>
#define DRIVER_NAME "menelaus"
...
...
drivers/mtd/onenand/omap2.c
浏览文件 @
7fc54fd3
...
...
@@ -445,13 +445,19 @@ static int omap3_onenand_write_bufferram(struct mtd_info *mtd, int area,
#else
int
omap3_onenand_read_bufferram
(
struct
mtd_info
*
mtd
,
int
area
,
unsigned
char
*
buffer
,
int
offset
,
size_t
count
);
static
int
omap3_onenand_read_bufferram
(
struct
mtd_info
*
mtd
,
int
area
,
unsigned
char
*
buffer
,
int
offset
,
size_t
count
)
{
return
-
ENOSYS
;
}
int
omap3_onenand_write_bufferram
(
struct
mtd_info
*
mtd
,
int
area
,
const
unsigned
char
*
buffer
,
int
offset
,
size_t
count
);
static
int
omap3_onenand_write_bufferram
(
struct
mtd_info
*
mtd
,
int
area
,
const
unsigned
char
*
buffer
,
int
offset
,
size_t
count
)
{
return
-
ENOSYS
;
}
#endif
...
...
@@ -549,13 +555,19 @@ static int omap2_onenand_write_bufferram(struct mtd_info *mtd, int area,
#else
int
omap2_onenand_read_bufferram
(
struct
mtd_info
*
mtd
,
int
area
,
unsigned
char
*
buffer
,
int
offset
,
size_t
count
);
static
int
omap2_onenand_read_bufferram
(
struct
mtd_info
*
mtd
,
int
area
,
unsigned
char
*
buffer
,
int
offset
,
size_t
count
)
{
return
-
ENOSYS
;
}
int
omap2_onenand_write_bufferram
(
struct
mtd_info
*
mtd
,
int
area
,
const
unsigned
char
*
buffer
,
int
offset
,
size_t
count
);
static
int
omap2_onenand_write_bufferram
(
struct
mtd_info
*
mtd
,
int
area
,
const
unsigned
char
*
buffer
,
int
offset
,
size_t
count
)
{
return
-
ENOSYS
;
}
#endif
...
...
arch/arm/plat-omap/include/plat
/menelaus.h
→
include/linux/mfd
/menelaus.h
浏览文件 @
7fc54fd3
/*
* arch/arm/plat-omap/include/mach/menelaus.h
*
* Functions to access Menelaus power management chip
*/
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录