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
18da784c
Commit
18da784c
authored
Sep 28, 2005
by
Kevin Hilman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: OMAP: Fix compliation/inlining in aic23 ALSA Driver
Signed-off-by:
Kevin Hilman
<
kevin@hilman.org
>
parent
b769d28a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
8 deletions
+13
-8
sound/arm/omap-aic23.c
sound/arm/omap-aic23.c
+0
-8
sound/arm/omap-aic23.h
sound/arm/omap-aic23.h
+13
-0
No files found.
sound/arm/omap-aic23.c
View file @
18da784c
...
...
@@ -162,14 +162,6 @@ static snd_pcm_hw_constraint_list_t hw_constraints_rates = {
* codec dependent code.
*/
extern
int
tlv320aic23_write_value
(
u8
reg
,
u16
value
);
/* TLV320AIC23 is a write only device */
__inline__
void
audio_aic23_write
(
u8
address
,
u16
data
)
{
tlv320aic23_write_value
(
address
,
data
);
}
/*
* Sample rate changing
*/
...
...
sound/arm/omap-aic23.h
View file @
18da784c
...
...
@@ -111,4 +111,17 @@ void snd_omap_suspend_mixer(void);
void
snd_omap_resume_mixer
(
void
);
#endif
/* Codec AIC23 */
#if defined(CONFIG_SENSORS_TLV320AIC23) || defined (CONFIG_SENSORS_TLV320AIC23_MODULE)
extern
int
tlv320aic23_write_value
(
u8
reg
,
u16
value
);
/* TLV320AIC23 is a write only device */
static
__inline__
void
audio_aic23_write
(
u8
address
,
u16
data
)
{
tlv320aic23_write_value
(
address
,
data
);
}
#endif
/* CONFIG_SENSORS_TLV320AIC23 */
#endif
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