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
953a7e84
Commit
953a7e84
authored
Jan 18, 2009
by
Russell King
Committed by
Russell King
Jan 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] omap: ensure OMAP drivers pass a struct device to clk_get()
Signed-off-by:
Russell King
<
rmk+kernel@arm.linux.org.uk
>
parent
1639058e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
drivers/char/hw_random/omap-rng.c
drivers/char/hw_random/omap-rng.c
+1
-1
drivers/usb/host/ohci-omap.c
drivers/usb/host/ohci-omap.c
+3
-3
drivers/video/omap/lcdc.c
drivers/video/omap/lcdc.c
+2
-2
No files found.
drivers/char/hw_random/omap-rng.c
View file @
953a7e84
...
...
@@ -102,7 +102,7 @@ static int __init omap_rng_probe(struct platform_device *pdev)
return
-
EBUSY
;
if
(
cpu_is_omap24xx
())
{
rng_ick
=
clk_get
(
NULL
,
"rng_ick"
);
rng_ick
=
clk_get
(
&
pdev
->
dev
,
"rng_ick"
);
if
(
IS_ERR
(
rng_ick
))
{
dev_err
(
&
pdev
->
dev
,
"Could not get rng_ick
\n
"
);
ret
=
PTR_ERR
(
rng_ick
);
...
...
drivers/usb/host/ohci-omap.c
View file @
953a7e84
...
...
@@ -315,14 +315,14 @@ static int usb_hcd_omap_probe (const struct hc_driver *driver,
return
-
ENODEV
;
}
usb_host_ck
=
clk_get
(
0
,
"usb_hhc_ck"
);
usb_host_ck
=
clk_get
(
&
pdev
->
dev
,
"usb_hhc_ck"
);
if
(
IS_ERR
(
usb_host_ck
))
return
PTR_ERR
(
usb_host_ck
);
if
(
!
cpu_is_omap15xx
())
usb_dc_ck
=
clk_get
(
0
,
"usb_dc_ck"
);
usb_dc_ck
=
clk_get
(
&
pdev
->
dev
,
"usb_dc_ck"
);
else
usb_dc_ck
=
clk_get
(
0
,
"lb_ck"
);
usb_dc_ck
=
clk_get
(
&
pdev
->
dev
,
"lb_ck"
);
if
(
IS_ERR
(
usb_dc_ck
))
{
clk_put
(
usb_host_ck
);
...
...
drivers/video/omap/lcdc.c
View file @
953a7e84
...
...
@@ -800,14 +800,14 @@ static int omap_lcdc_init(struct omapfb_device *fbdev, int ext_mode,
/* FIXME:
* According to errata some platforms have a clock rate limitiation
*/
lcdc
.
lcd_ck
=
clk_get
(
NULL
,
"lcd_ck"
);
lcdc
.
lcd_ck
=
clk_get
(
fbdev
->
dev
,
"lcd_ck"
);
if
(
IS_ERR
(
lcdc
.
lcd_ck
))
{
dev_err
(
fbdev
->
dev
,
"unable to access LCD clock
\n
"
);
r
=
PTR_ERR
(
lcdc
.
lcd_ck
);
goto
fail0
;
}
tc_ck
=
clk_get
(
NULL
,
"tc_ck"
);
tc_ck
=
clk_get
(
fbdev
->
dev
,
"tc_ck"
);
if
(
IS_ERR
(
tc_ck
))
{
dev_err
(
fbdev
->
dev
,
"unable to access TC clock
\n
"
);
r
=
PTR_ERR
(
tc_ck
);
...
...
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