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
5176dfcd
Commit
5176dfcd
authored
Nov 08, 2013
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/topic/ak4104' into asoc-next
parents
47973c6e
193b2f65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
sound/soc/codecs/ak4104.c
sound/soc/codecs/ak4104.c
+8
-3
No files found.
sound/soc/codecs/ak4104.c
View file @
5176dfcd
...
...
@@ -45,8 +45,6 @@
#define AK4104_TX_TXE (1 << 0)
#define AK4104_TX_V (1 << 1)
#define DRV_NAME "ak4104-codec"
struct
ak4104_private
{
struct
regmap
*
regmap
;
};
...
...
@@ -291,12 +289,19 @@ static const struct of_device_id ak4104_of_match[] = {
};
MODULE_DEVICE_TABLE
(
of
,
ak4104_of_match
);
static
const
struct
spi_device_id
ak4104_id_table
[]
=
{
{
"ak4104"
,
0
},
{
}
};
MODULE_DEVICE_TABLE
(
spi
,
ak4104_id_table
);
static
struct
spi_driver
ak4104_spi_driver
=
{
.
driver
=
{
.
name
=
DRV_NAME
,
.
name
=
"ak4104"
,
.
owner
=
THIS_MODULE
,
.
of_match_table
=
ak4104_of_match
,
},
.
id_table
=
ak4104_id_table
,
.
probe
=
ak4104_spi_probe
,
.
remove
=
ak4104_spi_remove
,
};
...
...
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