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
51918075
Commit
51918075
authored
Feb 12, 2010
by
Uwe Kleine-König
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arm/imx/audmux-v1: use SoC-prefixed names
Signed-off-by:
Uwe Kleine-König
<
u.kleine-koenig@pengutronix.de
>
parent
6574305b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
arch/arm/plat-mxc/Makefile
arch/arm/plat-mxc/Makefile
+0
-1
arch/arm/plat-mxc/audmux-v1.c
arch/arm/plat-mxc/audmux-v1.c
+12
-2
No files found.
arch/arm/plat-mxc/Makefile
View file @
51918075
...
...
@@ -14,6 +14,5 @@ obj-$(CONFIG_MXC_PWM) += pwm.o
obj-$(CONFIG_USB_EHCI_MXC)
+=
ehci.o
obj-$(CONFIG_MXC_ULPI)
+=
ulpi.o
obj-$(CONFIG_ARCH_MXC_AUDMUX_V1)
+=
audmux-v1.o
CFLAGS_audmux-v1.o
=
-DIMX_NEEDS_DEPRECATED_SYMBOLS
obj-$(CONFIG_ARCH_MXC_AUDMUX_V2)
+=
audmux-v2.o
CFLAGS_audmux-v2.o
=
-DIMX_NEEDS_DEPRECATED_SYMBOLS
arch/arm/plat-mxc/audmux-v1.c
View file @
51918075
...
...
@@ -50,8 +50,18 @@ EXPORT_SYMBOL_GPL(mxc_audmux_v1_configure_port);
static
int
mxc_audmux_v1_init
(
void
)
{
if
(
cpu_is_mx27
()
||
cpu_is_mx21
())
audmux_base
=
IO_ADDRESS
(
AUDMUX_BASE_ADDR
);
#ifdef CONFIG_MACH_MX21
if
(
cpu_is_mx21
())
audmux_base
=
MX21_IO_ADDRESS
(
MX21_AUDMUX_BASE_ADDR
);
else
#endif
#ifdef CONFIG_MACH_MX27
if
(
cpu_is_mx27
())
audmux_base
=
MX27_IO_ADDRESS
(
MX27_AUDMUX_BASE_ADDR
);
else
#endif
(
void
)
0
;
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