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
9b449e99
Commit
9b449e99
authored
Jan 02, 2015
by
Ulf Hansson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmc: sdhci-acpi: Remove redundant runtime PM idle callback
Signed-off-by:
Ulf Hansson
<
ulf.hansson@linaro.org
>
parent
348487cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
drivers/mmc/host/sdhci-acpi.c
drivers/mmc/host/sdhci-acpi.c
+1
-6
No files found.
drivers/mmc/host/sdhci-acpi.c
View file @
9b449e99
...
...
@@ -448,18 +448,13 @@ static int sdhci_acpi_runtime_resume(struct device *dev)
return
sdhci_runtime_resume_host
(
c
->
host
);
}
static
int
sdhci_acpi_runtime_idle
(
struct
device
*
dev
)
{
return
0
;
}
#endif
static
const
struct
dev_pm_ops
sdhci_acpi_pm_ops
=
{
.
suspend
=
sdhci_acpi_suspend
,
.
resume
=
sdhci_acpi_resume
,
SET_RUNTIME_PM_OPS
(
sdhci_acpi_runtime_suspend
,
sdhci_acpi_runtime_resume
,
sdhci_acpi_runtime_idle
)
sdhci_acpi_runtime_resume
,
NULL
)
};
static
struct
platform_driver
sdhci_acpi_driver
=
{
...
...
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