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
Kirill Smelkov
linux
Commits
0a105ddb
Commit
0a105ddb
authored
Dec 12, 2011
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-3.2' into for-3.3
parents
43a95197
497d4965
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
sound/soc/codecs/wm8958-dsp2.c
sound/soc/codecs/wm8958-dsp2.c
+2
-0
sound/soc/pxa/hx4700.c
sound/soc/pxa/hx4700.c
+3
-2
No files found.
sound/soc/codecs/wm8958-dsp2.c
View file @
0a105ddb
...
...
@@ -61,6 +61,8 @@ static int wm8958_dsp2_fw(struct snd_soc_codec *codec, const char *name,
}
if
(
memcmp
(
fw
->
data
,
"WMFW"
,
4
)
!=
0
)
{
memcpy
(
&
data32
,
fw
->
data
,
sizeof
(
data32
));
data32
=
be32_to_cpu
(
data32
);
dev_err
(
codec
->
dev
,
"%s: firmware has bad file magic %08x
\n
"
,
name
,
data32
);
goto
err
;
...
...
sound/soc/pxa/hx4700.c
View file @
0a105ddb
...
...
@@ -209,9 +209,10 @@ static int __devinit hx4700_audio_probe(struct platform_device *pdev)
snd_soc_card_hx4700
.
dev
=
&
pdev
->
dev
;
ret
=
snd_soc_register_card
(
&
snd_soc_card_hx4700
);
if
(
ret
)
return
ret
;
gpio_free_array
(
hx4700_audio_gpios
,
ARRAY_SIZE
(
hx4700_audio_gpios
));
return
0
;
return
ret
;
}
static
int
__devexit
hx4700_audio_remove
(
struct
platform_device
*
pdev
)
...
...
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