Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
11
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clea OS
bsp
nxp
linux-seco-imx
Commits
7ee405ea
Commit
7ee405ea
authored
10 years ago
by
Wolfram Sang
Browse files
Options
Downloads
Patches
Plain Diff
i2c: powermac: make use of the new infrastructure for quirks
Signed-off-by:
Wolfram Sang
<
wsa@the-dreams.de
>
parent
afe90203
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/i2c/busses/i2c-powermac.c
+4
-6
4 additions, 6 deletions
drivers/i2c/busses/i2c-powermac.c
with
4 additions
and
6 deletions
drivers/i2c/busses/i2c-powermac.c
+
4
−
6
View file @
7ee405ea
...
@@ -153,12 +153,6 @@ static int i2c_powermac_master_xfer( struct i2c_adapter *adap,
...
@@ -153,12 +153,6 @@ static int i2c_powermac_master_xfer( struct i2c_adapter *adap,
int
read
;
int
read
;
int
addrdir
;
int
addrdir
;
if
(
num
!=
1
)
{
dev_err
(
&
adap
->
dev
,
"Multi-message I2C transactions not supported
\n
"
);
return
-
EOPNOTSUPP
;
}
if
(
msgs
->
flags
&
I2C_M_TEN
)
if
(
msgs
->
flags
&
I2C_M_TEN
)
return
-
EINVAL
;
return
-
EINVAL
;
read
=
(
msgs
->
flags
&
I2C_M_RD
)
!=
0
;
read
=
(
msgs
->
flags
&
I2C_M_RD
)
!=
0
;
...
@@ -205,6 +199,9 @@ static const struct i2c_algorithm i2c_powermac_algorithm = {
...
@@ -205,6 +199,9 @@ static const struct i2c_algorithm i2c_powermac_algorithm = {
.
functionality
=
i2c_powermac_func
,
.
functionality
=
i2c_powermac_func
,
};
};
static
struct
i2c_adapter_quirks
i2c_powermac_quirks
=
{
.
max_num_msgs
=
1
,
};
static
int
i2c_powermac_remove
(
struct
platform_device
*
dev
)
static
int
i2c_powermac_remove
(
struct
platform_device
*
dev
)
{
{
...
@@ -434,6 +431,7 @@ static int i2c_powermac_probe(struct platform_device *dev)
...
@@ -434,6 +431,7 @@ static int i2c_powermac_probe(struct platform_device *dev)
platform_set_drvdata
(
dev
,
adapter
);
platform_set_drvdata
(
dev
,
adapter
);
adapter
->
algo
=
&
i2c_powermac_algorithm
;
adapter
->
algo
=
&
i2c_powermac_algorithm
;
adapter
->
quirks
=
&
i2c_powermac_quirks
;
i2c_set_adapdata
(
adapter
,
bus
);
i2c_set_adapdata
(
adapter
,
bus
);
adapter
->
dev
.
parent
=
&
dev
->
dev
;
adapter
->
dev
.
parent
=
&
dev
->
dev
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment