Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
U
uboot-imx
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Eric Kuzmenko
uboot-imx
Commits
9b39005d
Commit
9b39005d
authored
Nov 24, 2018
by
Angus Ainslie (Purism)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imx8m_som.c : disable the haptic motor before turning on power_en
parent
18dd577b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
board/emcraft/imx8m_som/spl.c
board/emcraft/imx8m_som/spl.c
+3
-3
No files found.
board/emcraft/imx8m_som/spl.c
View file @
9b39005d
...
...
@@ -288,13 +288,13 @@ int power_init_board(void)
gpio_request
(
IMU_INT
,
"imu_int"
);
gpio_direction_input
(
IMU_INT
);
gpio_request
(
PWR_EN
,
"pwr_en"
);
gpio_direction_output
(
PWR_EN
,
1
);
/* disable the haptic motor */
gpio_request
(
HAPTIC_nEN
,
"haptic_en"
);
gpio_direction_output
(
HAPTIC_nEN
,
1
);
gpio_request
(
PWR_EN
,
"pwr_en"
);
gpio_direction_output
(
PWR_EN
,
1
);
udelay
(
500
);
rv
=
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