Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
a742e30b
Commit
a742e30b
authored
Apr 03, 2006
by
Tony Lindgren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup patch to sync with mainline kernel
parent
fdd8a3fd
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
17 additions
and
21 deletions
+17
-21
arch/arm/mach-omap1/board-h2.c
arch/arm/mach-omap1/board-h2.c
+6
-6
arch/arm/mach-omap2/serial.c
arch/arm/mach-omap2/serial.c
+1
-1
arch/arm/plat-omap/clock.c
arch/arm/plat-omap/clock.c
+1
-1
arch/arm/plat-omap/fb.c
arch/arm/plat-omap/fb.c
+0
-4
arch/arm/plat-omap/mcbsp.c
arch/arm/plat-omap/mcbsp.c
+6
-6
arch/arm/plat-omap/timer32k.c
arch/arm/plat-omap/timer32k.c
+1
-1
include/asm-arm/arch-omap/mux.h
include/asm-arm/arch-omap/mux.h
+1
-1
include/asm-arm/arch-omap/omap-alsa.h
include/asm-arm/arch-omap/omap-alsa.h
+1
-1
No files found.
arch/arm/mach-omap1/board-h2.c
View file @
a742e30b
...
...
@@ -286,13 +286,13 @@ static struct platform_device h2_lcd_device = {
.
id
=
-
1
,
};
static
struct
omap_mcbsp_reg_cfg
mcbsp_regs
=
{
static
struct
omap_mcbsp_reg_cfg
mcbsp_regs
=
{
.
spcr2
=
FREE
|
FRST
|
GRST
|
XRST
|
XINTM
(
3
),
.
spcr1
=
RINTM
(
3
)
|
RRST
,
.
rcr2
=
RPHASE
|
RFRLEN2
(
OMAP_MCBSP_WORD_8
)
|
RWDLEN2
(
OMAP_MCBSP_WORD_16
)
|
RDATDLY
(
1
),
.
rcr1
=
RFRLEN1
(
OMAP_MCBSP_WORD_8
)
|
RWDLEN1
(
OMAP_MCBSP_WORD_16
),
.
xcr2
=
XPHASE
|
XFRLEN2
(
OMAP_MCBSP_WORD_8
)
|
.
xcr2
=
XPHASE
|
XFRLEN2
(
OMAP_MCBSP_WORD_8
)
|
XWDLEN2
(
OMAP_MCBSP_WORD_16
)
|
XDATDLY
(
1
)
|
XFIG
,
.
xcr1
=
XFRLEN1
(
OMAP_MCBSP_WORD_8
)
|
XWDLEN1
(
OMAP_MCBSP_WORD_16
),
.
srgr1
=
FWID
(
15
),
...
...
@@ -301,7 +301,7 @@ static struct omap_mcbsp_reg_cfg mcbsp_regs = {
.
pcr0
=
CLKXM
|
CLKRM
|
FSXP
|
FSRP
|
CLKXP
|
CLKRP
,
//.pcr0 = CLKXP | CLKRP, /* mcbsp: slave */
};
static
struct
omap_alsa_codec_config
alsa_config
=
{
.
name
=
"H2 TSC2101"
,
.
mcbsp_regs_alsa
=
&
mcbsp_regs
,
...
...
@@ -311,15 +311,15 @@ static struct omap_alsa_codec_config alsa_config = {
.
codec_clock_on
=
NULL
,
// tsc2101_clock_on,
.
codec_clock_off
=
NULL
,
// tsc2101_clock_off,
.
get_default_samplerate
=
NULL
,
// tsc2101_get_default_samplerate,
};
};
static
struct
platform_device
h2_mcbsp1_device
=
{
.
name
=
"omap_alsa_mcbsp"
,
.
id
=
1
,
.
dev
=
{
.
platform_data
=
&
alsa_config
,
},
};
},
};
static
struct
platform_device
*
h2_devices
[]
__initdata
=
{
&
h2_nor_device
,
...
...
arch/arm/mach-omap2/serial.c
View file @
a742e30b
...
...
@@ -167,7 +167,7 @@ void __init omap_serial_init()
static
struct
platform_device
serial_device
=
{
.
name
=
"serial8250"
,
.
id
=
0
,
.
id
=
PLAT8250_DEV_PLATFORM
,
.
dev
=
{
.
platform_data
=
serial_platform_data
,
},
...
...
arch/arm/plat-omap/clock.c
View file @
a742e30b
...
...
@@ -67,7 +67,7 @@ struct clk * clk_get(struct device *dev, const char *id)
clk
=
p
;
break
;
}
}
}
mutex_unlock
(
&
clocks_mutex
);
...
...
arch/arm/plat-omap/fb.c
View file @
a742e30b
...
...
@@ -20,14 +20,10 @@ static struct omapfb_platform_data omapfb_config;
static
u64
omap_fb_dma_mask
=
~
(
u32
)
0
;
/* in devices.c */
extern
void
omap_nop_release
(
struct
device
*
dev
);
static
struct
platform_device
omap_fb_device
=
{
.
name
=
"omapfb"
,
.
id
=
-
1
,
.
dev
=
{
.
release
=
omap_nop_release
,
.
dma_mask
=
&
omap_fb_dma_mask
,
.
coherent_dma_mask
=
~
(
u32
)
0
,
.
platform_data
=
&
omapfb_config
,
...
...
arch/arm/plat-omap/mcbsp.c
View file @
a742e30b
...
...
@@ -310,10 +310,10 @@ int omap_mcbsp_request(unsigned int id)
mcbsp
[
id
].
tx_irq
,
mcbsp
[
id
].
id
);
return
err
;
}
init_completion
(
&
(
mcbsp
[
id
].
tx_irq_completion
));
err
=
request_irq
(
mcbsp
[
id
].
rx_irq
,
omap_mcbsp_rx_irq_handler
,
0
,
"McBSP"
,
(
void
*
)
(
&
mcbsp
[
id
]));
...
...
@@ -323,10 +323,10 @@ int omap_mcbsp_request(unsigned int id)
free_irq
(
mcbsp
[
id
].
tx_irq
,
(
void
*
)
(
&
mcbsp
[
id
]));
return
err
;
}
init_completion
(
&
(
mcbsp
[
id
].
rx_irq_completion
));
}
return
0
;
}
...
...
@@ -364,7 +364,7 @@ void omap_mcbsp_free(unsigned int id)
mcbsp
[
id
].
free
=
1
;
spin_unlock
(
&
mcbsp
[
id
].
lock
);
if
(
mcbsp
[
id
].
io_type
==
OMAP_MCBSP_IRQ_IO
)
{
/* Free IRQs */
free_irq
(
mcbsp
[
id
].
rx_irq
,
(
void
*
)
(
&
mcbsp
[
id
]));
...
...
arch/arm/plat-omap/timer32k.c
View file @
a742e30b
...
...
@@ -272,7 +272,7 @@ static struct clk * gpt1_ick;
static
struct
clk
*
gpt1_fck
;
static
__init
void
omap_init_32k_timer
(
void
)
{
{
#ifdef CONFIG_NO_IDLE_HZ
omap_timer
.
dyn_tick
=
&
omap_dyn_tick_timer
;
#endif
...
...
include/asm-arm/arch-omap/mux.h
View file @
a742e30b
...
...
@@ -171,7 +171,7 @@ enum omap730_index {
E4_730_KBC2
,
F4_730_KBC3
,
E3_730_KBC4
,
/* USB */
AA17_730_USB_DM
,
W16_730_USB_PU_EN
,
...
...
include/asm-arm/arch-omap/omap-alsa.h
View file @
a742e30b
/*
* linux/include/asm-arm/arch-omap/omap-alsa.h
*
*
* Alsa Driver for AIC23 and TSC2101 codecs on OMAP platform boards.
*
* Copyright (C) 2006 Mika Laitio <lamikr@cc.jyu.fi>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment