Skip to main content
Homepage
Explore
Search or go to…
/
Sign in
Explore
Primary navigation
Project
A
AndroidKernelMSM
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Collapse sidebar
Snippets
Groups
Projects
Show more breadcrumbs
Matombo
AndroidKernelMSM
Commits
a3a6f67b
Commit
a3a6f67b
authored
Apr 20, 2013
by
Arve Hjønnevåg
Browse files
Options
Downloads
Patches
Plain Diff
mmc: sdhci-msm: Disable non-existing check_power_status sdhci op
parent
2de9037d
Loading
Loading
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/mmc/host/sdhci-msm.c
+4
-0
4 additions, 0 deletions
drivers/mmc/host/sdhci-msm.c
with
4 additions
and
0 deletions
drivers/mmc/host/sdhci-msm.c
+
4
−
0
View file @
a3a6f67b
...
...
@@ -1785,6 +1785,7 @@ store_sdhci_max_bus_bw(struct device *dev, struct device_attribute *attr,
return
count
;
}
#ifdef USE_MISSING_CODE
static
void
sdhci_msm_check_power_status
(
struct
sdhci_host
*
host
)
{
struct
sdhci_pltfm_host
*
pltfm_host
=
sdhci_priv
(
host
);
...
...
@@ -1805,6 +1806,7 @@ static void sdhci_msm_check_power_status(struct sdhci_host *host)
mmc_hostname
(
host
->
mmc
),
__func__
,
ret
,
readb_relaxed
(
msm_host
->
core_mem
+
CORE_PWRCTL_CTL
));
}
#endif
static
void
sdhci_msm_toggle_cdr
(
struct
sdhci_host
*
host
,
bool
enable
)
{
...
...
@@ -2005,7 +2007,9 @@ static int sdhci_msm_set_uhs_signaling(struct sdhci_host *host,
static
struct
sdhci_ops
sdhci_msm_ops
=
{
.
set_uhs_signaling
=
sdhci_msm_set_uhs_signaling
,
#ifdef USE_MISSING_CODE
.
check_power_status
=
sdhci_msm_check_power_status
,
#endif
.
execute_tuning
=
sdhci_msm_execute_tuning
,
.
toggle_cdr
=
sdhci_msm_toggle_cdr
,
.
get_max_segments
=
sdhci_msm_max_segs
,
...
...
...
...
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
sign in
to comment