Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
f6a1f218
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看板
提交
f6a1f218
编写于
11月 23, 2010
作者:
R
Russell King
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-rmk' of
git://git.pengutronix.de/git/imx/linux-2.6
上级
b0c4d4ee
46e3f307
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
9 addition
and
19 deletion
+9
-19
arch/arm/mach-imx/eukrea_mbimx27-baseboard.c
arch/arm/mach-imx/eukrea_mbimx27-baseboard.c
+0
-6
arch/arm/mach-mx25/devices-imx25.h
arch/arm/mach-mx25/devices-imx25.h
+2
-2
arch/arm/mach-mx3/mach-pcm037_eet.c
arch/arm/mach-mx3/mach-pcm037_eet.c
+2
-3
arch/arm/plat-mxc/devices/platform-imx-dma.c
arch/arm/plat-mxc/devices/platform-imx-dma.c
+0
-8
arch/arm/plat-mxc/devices/platform-spi_imx.c
arch/arm/plat-mxc/devices/platform-spi_imx.c
+1
-0
drivers/video/mx3fb.c
drivers/video/mx3fb.c
+4
-0
未找到文件。
arch/arm/mach-imx/eukrea_mbimx27-baseboard.c
浏览文件 @
f6a1f218
...
...
@@ -250,9 +250,6 @@ static const struct imxuart_platform_data uart_pdata __initconst = {
.
flags
=
IMXUART_HAVE_RTSCTS
,
};
#if defined(CONFIG_TOUCHSCREEN_ADS7846) \
|| defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
#define ADS7846_PENDOWN (GPIO_PORTD | 25)
static
void
ads7846_dev_init
(
void
)
...
...
@@ -273,9 +270,7 @@ static struct ads7846_platform_data ads7846_config __initdata = {
.
get_pendown_state
=
ads7846_get_pendown_state
,
.
keep_vref_on
=
1
,
};
#endif
#if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
static
struct
spi_board_info
eukrea_mbimx27_spi_board_info
[]
__initdata
=
{
[
0
]
=
{
.
modalias
=
"ads7846"
,
...
...
@@ -294,7 +289,6 @@ static const struct spi_imx_master eukrea_mbimx27_spi0_data __initconst = {
.
chipselect
=
eukrea_mbimx27_spi_cs
,
.
num_chipselect
=
ARRAY_SIZE
(
eukrea_mbimx27_spi_cs
),
};
#endif
static
struct
i2c_board_info
eukrea_mbimx27_i2c_devices
[]
=
{
{
...
...
arch/arm/mach-mx25/devices-imx25.h
浏览文件 @
f6a1f218
...
...
@@ -42,9 +42,9 @@ extern const struct imx_mxc_nand_data imx25_mxc_nand_data __initconst;
#define imx25_add_mxc_nand(pdata) \
imx_add_mxc_nand(&imx25_mxc_nand_data, pdata)
extern
const
struct
imx_spi_imx_data
imx25_
spi_imx
_data
[]
__initconst
;
extern
const
struct
imx_spi_imx_data
imx25_
cspi
_data
[]
__initconst
;
#define imx25_add_spi_imx(id, pdata) \
imx_add_spi_imx(&imx25_
spi_imx
_data[id], pdata)
imx_add_spi_imx(&imx25_
cspi
_data[id], pdata)
#define imx25_add_spi_imx0(pdata) imx25_add_spi_imx(0, pdata)
#define imx25_add_spi_imx1(pdata) imx25_add_spi_imx(1, pdata)
#define imx25_add_spi_imx2(pdata) imx25_add_spi_imx(2, pdata)
...
...
arch/arm/mach-mx3/mach-pcm037_eet.c
浏览文件 @
f6a1f218
...
...
@@ -14,6 +14,7 @@
#include <mach/common.h>
#include <mach/iomux-mx3.h>
#include <mach/spi.h>
#include <asm/mach-types.h>
...
...
@@ -59,14 +60,12 @@ static struct spi_board_info pcm037_spi_dev[] = {
};
/* Platform Data for MXC CSPI */
#if defined(CONFIG_SPI_IMX) || defined(CONFIG_SPI_IMX_MODULE)
static
int
pcm037_spi1_cs
[]
=
{
MXC_SPI_CS
(
1
),
IOMUX_TO_GPIO
(
MX31_PIN_KEY_COL7
)};
static
const
struct
spi_imx_master
pcm037_spi1_pdata
__initconst
=
{
.
chipselect
=
pcm037_spi1_cs
,
.
num_chipselect
=
ARRAY_SIZE
(
pcm037_spi1_cs
),
};
#endif
/* GPIO-keys input device */
static
struct
gpio_keys_button
pcm037_gpio_keys
[]
=
{
...
...
@@ -171,7 +170,7 @@ static struct platform_device pcm037_gpio_keys_device = {
},
};
static
int
eet_init_devices
(
void
)
static
int
__init
eet_init_devices
(
void
)
{
if
(
!
machine_is_pcm037
()
||
pcm037_variant
()
!=
PCM037_EET
)
return
0
;
...
...
arch/arm/plat-mxc/devices/platform-imx-dma.c
浏览文件 @
f6a1f218
...
...
@@ -12,15 +12,7 @@
#include <mach/hardware.h>
#include <mach/devices-common.h>
#ifdef SDMA_IS_MERGED
#include <mach/sdma.h>
#else
struct
sdma_platform_data
{
int
sdma_version
;
char
*
cpu_name
;
int
to_version
;
};
#endif
struct
imx_imx_sdma_data
{
resource_size_t
iobase
;
...
...
arch/arm/plat-mxc/devices/platform-spi_imx.c
浏览文件 @
f6a1f218
...
...
@@ -27,6 +27,7 @@ const struct imx_spi_imx_data imx21_cspi_data[] __initconst = {
imx_spi_imx_data_entry(MX21, CSPI, "imx21-cspi", _id, _hwid, SZ_4K)
imx21_cspi_data_entry
(
0
,
1
),
imx21_cspi_data_entry
(
1
,
2
),
};
#endif
#ifdef CONFIG_ARCH_MX25
...
...
drivers/video/mx3fb.c
浏览文件 @
f6a1f218
...
...
@@ -27,6 +27,7 @@
#include <linux/clk.h>
#include <linux/mutex.h>
#include <mach/dma.h>
#include <mach/hardware.h>
#include <mach/ipu.h>
#include <mach/mx3fb.h>
...
...
@@ -1420,6 +1421,9 @@ static bool chan_filter(struct dma_chan *chan, void *arg)
struct
device
*
dev
;
struct
mx3fb_platform_data
*
mx3fb_pdata
;
if
(
!
imx_dma_is_ipu
(
chan
))
return
false
;
if
(
!
rq
)
return
false
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录