Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
8e998058
Commit
8e998058
authored
Feb 12, 2010
by
Uwe Kleine-König
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arm/imx/audmux-v2: use SoC-prefixed names
Signed-off-by:
Uwe Kleine-König
<
u.kleine-koenig@pengutronix.de
>
parent
51918075
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
arch/arm/plat-mxc/Makefile
arch/arm/plat-mxc/Makefile
+0
-1
arch/arm/plat-mxc/audmux-v2.c
arch/arm/plat-mxc/audmux-v2.c
+5
-4
No files found.
arch/arm/plat-mxc/Makefile
View file @
8e998058
...
...
@@ -15,4 +15,3 @@ obj-$(CONFIG_USB_EHCI_MXC) += ehci.o
obj-$(CONFIG_MXC_ULPI)
+=
ulpi.o
obj-$(CONFIG_ARCH_MXC_AUDMUX_V1)
+=
audmux-v1.o
obj-$(CONFIG_ARCH_MXC_AUDMUX_V2)
+=
audmux-v2.o
CFLAGS_audmux-v2.o
=
-DIMX_NEEDS_DEPRECATED_SYMBOLS
arch/arm/plat-mxc/audmux-v2.c
View file @
8e998058
...
...
@@ -190,7 +190,10 @@ static int mxc_audmux_v2_init(void)
{
int
ret
;
if
(
cpu_is_mx35
())
{
if
(
cpu_is_mx31
())
audmux_base
=
MX31_IO_ADDRESS
(
MX31_AUDMUX_BASE_ADDR
);
else
if
(
cpu_is_mx35
())
{
audmux_clk
=
clk_get
(
NULL
,
"audmux"
);
if
(
IS_ERR
(
audmux_clk
))
{
ret
=
PTR_ERR
(
audmux_clk
);
...
...
@@ -198,11 +201,9 @@ static int mxc_audmux_v2_init(void)
ret
);
return
ret
;
}
audmux_base
=
MX35_IO_ADDRESS
(
MX35_AUDMUX_BASE_ADDR
);
}
if
(
cpu_is_mx31
()
||
cpu_is_mx35
())
audmux_base
=
IO_ADDRESS
(
AUDMUX_BASE_ADDR
);
audmux_debugfs_init
();
return
0
;
...
...
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