Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
1c10d96f
Unverified
Commit
1c10d96f
authored
Jan 16, 2018
by
davidcunado-arm
Committed by
GitHub
Jan 16, 2018
Browse files
Merge pull request #1221 from hzhuang1/fix_HLE
emmc/dw_mmc: fix the assert on HLE bit
parents
759a7be9
e52f5291
Changes
1
Show whitespace changes
Inline
Side-by-side
drivers/synopsys/emmc/dw_mmc.c
View file @
1c10d96f
...
...
@@ -146,7 +146,7 @@ static void dw_update_clk(void)
if
((
data
&
CMD_START
)
==
0
)
break
;
data
=
mmio_read_32
(
dw_params
.
reg_base
+
DWMMC_RINTSTS
);
assert
(
data
&
INT_HLE
);
assert
(
(
data
&
INT_HLE
)
==
0
)
;
}
}
...
...
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