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
c8dbaa22
Commit
c8dbaa22
authored
Aug 21, 2017
by
Helge Deller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parisc/harmony: Fix section mismatches
Signed-off-by:
Helge Deller
<
deller@gmx.de
>
parent
b6adc16e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
sound/parisc/harmony.c
sound/parisc/harmony.c
+5
-5
No files found.
sound/parisc/harmony.c
View file @
c8dbaa22
...
...
@@ -66,7 +66,7 @@ module_param(id, charp, 0444);
MODULE_PARM_DESC
(
id
,
"ID string for Harmony driver."
);
static
struct
parisc_device_id
snd_harmony_devtable
[]
=
{
static
const
struct
parisc_device_id
snd_harmony_devtable
[]
__initconst
=
{
/* bushmaster / flounder */
{
HPHW_FIO
,
HVERSION_REV_ANY_ID
,
HVERSION_ANY_ID
,
0x0007A
},
/* 712 / 715 */
...
...
@@ -960,7 +960,7 @@ snd_harmony_create(struct snd_card *card,
return
err
;
}
static
int
static
int
__init
snd_harmony_probe
(
struct
parisc_device
*
padev
)
{
int
err
;
...
...
@@ -1000,18 +1000,18 @@ snd_harmony_probe(struct parisc_device *padev)
return
err
;
}
static
int
static
int
__exit
snd_harmony_remove
(
struct
parisc_device
*
padev
)
{
snd_card_free
(
parisc_get_drvdata
(
padev
));
return
0
;
}
static
struct
parisc_driver
snd_harmony_driver
=
{
static
struct
parisc_driver
snd_harmony_driver
__refdata
=
{
.
name
=
"harmony"
,
.
id_table
=
snd_harmony_devtable
,
.
probe
=
snd_harmony_probe
,
.
remove
=
snd_harmony_remove
,
.
remove
=
__exit_p
(
snd_harmony_remove
)
,
};
static
int
__init
...
...
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