Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
fb35f1ce
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 4 年多
通知
15
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
fb35f1ce
编写于
7月 01, 2010
作者:
R
Russell King
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fix' of
git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6
上级
8954bb0d
cdb4acc0
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
18 addition
and
29 deletion
+18
-29
arch/arm/include/asm/mach/udc_pxa2xx.h
arch/arm/include/asm/mach/udc_pxa2xx.h
+2
-2
arch/arm/mach-pxa/mioa701.c
arch/arm/mach-pxa/mioa701.c
+1
-1
arch/arm/mach-pxa/z2.c
arch/arm/mach-pxa/z2.c
+10
-16
arch/arm/plat-pxa/Makefile
arch/arm/plat-pxa/Makefile
+2
-1
drivers/power/z2_battery.c
drivers/power/z2_battery.c
+3
-9
未找到文件。
arch/arm/include/asm/mach/udc_pxa2xx.h
浏览文件 @
fb35f1ce
...
...
@@ -21,8 +21,8 @@ struct pxa2xx_udc_mach_info {
* here. Note that sometimes the signals go through inverters...
*/
bool
gpio_vbus_inverted
;
u16
gpio_vbus
;
/* high == vbus present */
int
gpio_vbus
;
/* high == vbus present */
bool
gpio_pullup_inverted
;
u16
gpio_pullup
;
/* high == pullup activated */
int
gpio_pullup
;
/* high == pullup activated */
};
arch/arm/mach-pxa/mioa701.c
浏览文件 @
fb35f1ce
...
...
@@ -697,7 +697,7 @@ static struct i2c_board_info __initdata mioa701_pi2c_devices[] = {
};
/* Board I2C devices. */
static
struct
i2c_board_info
__initdata
mioa701_i2c_devices
[]
=
{
static
struct
i2c_board_info
mioa701_i2c_devices
[]
=
{
{
I2C_BOARD_INFO
(
"mt9m111"
,
0x5d
),
},
...
...
arch/arm/mach-pxa/z2.c
浏览文件 @
fb35f1ce
...
...
@@ -3,8 +3,9 @@
*
* Support for the Zipit Z2 Handheld device.
*
* Author: Ken McGuire
* Created: Jan 25, 2009
* Copyright (C) 2009-2010 Marek Vasut <marek.vasut@gmail.com>
*
* Based on research and code by: Ken McGuire
* Based on mainstone.c as modified for the Zipit Z2.
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -157,21 +158,14 @@ static struct mtd_partition z2_flash_parts[] = {
{
.
name
=
"U-Boot Bootloader"
,
.
offset
=
0x0
,
.
size
=
0x20000
,
},
{
.
name
=
"Linux Kernel"
,
.
offset
=
0x20000
,
.
size
=
0x220000
,
},
{
.
name
=
"Filesystem"
,
.
offset
=
0x240000
,
.
size
=
0x5b0000
,
},
{
.
size
=
0x40000
,
},
{
.
name
=
"U-Boot Environment"
,
.
offset
=
0x7f0000
,
.
offset
=
0x40000
,
.
size
=
0x60000
,
},
{
.
name
=
"Flash"
,
.
offset
=
0x60000
,
.
size
=
MTDPART_SIZ_FULL
,
},
};
...
...
arch/arm/plat-pxa/Makefile
浏览文件 @
fb35f1ce
...
...
@@ -2,8 +2,9 @@
# Makefile for code common across different PXA processor families
#
obj-y
:=
dma.o
pmu.o
obj-y
:=
dma.o
obj-$(CONFIG_ARCH_PXA)
+=
pmu.o
obj-$(CONFIG_GENERIC_GPIO)
+=
gpio.o
obj-$(CONFIG_PXA3xx)
+=
mfp.o
obj-$(CONFIG_ARCH_MMP)
+=
mfp.o
...
...
drivers/power/z2_battery.c
浏览文件 @
fb35f1ce
...
...
@@ -9,19 +9,13 @@
*
*/
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/power_supply.h>
#include <linux/i2c.h>
#include <linux/spinlock.h>
#include <linux/interrupt.h>
#include <linux/gpio.h>
#include <linux/i2c.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <
asm/irq
.h>
#include <
asm/mach/irq
.h>
#include <
linux/power_supply
.h>
#include <
linux/slab
.h>
#include <linux/z2_battery.h>
#define Z2_DEFAULT_NAME "Z2"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录