Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
linux
linux-davinci
Commits
5c7bbedb
Commit
5c7bbedb
authored
Feb 10, 2009
by
Kevin Hilman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NET: davinci EMAC: change clock name
Signed-off-by:
Kevin Hilman
<
khilman@deeprootsystems.com
>
parent
18490740
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
arch/arm/mach-davinci/dm644x.c
arch/arm/mach-davinci/dm644x.c
+1
-1
arch/arm/mach-davinci/dm646x.c
arch/arm/mach-davinci/dm646x.c
+1
-1
drivers/net/davinci_emac.c
drivers/net/davinci_emac.c
+1
-1
No files found.
arch/arm/mach-davinci/dm644x.c
View file @
5c7bbedb
...
...
@@ -171,7 +171,7 @@ static struct clk uart2_clk = {
};
static
struct
clk
emac_clk
=
{
.
name
=
"
EMACCLK
"
,
.
name
=
"
emac
"
,
.
parent
=
&
pll1_sysclk5
,
.
lpsc
=
DAVINCI_LPSC_EMAC_WRAPPER
,
};
...
...
arch/arm/mach-davinci/dm646x.c
View file @
5c7bbedb
...
...
@@ -189,7 +189,7 @@ static struct clk aemif_clk = {
};
static
struct
clk
emac_clk
=
{
.
name
=
"
EMACCLK
"
,
.
name
=
"
emac
"
,
.
parent
=
&
pll1_sysclk3
,
.
lpsc
=
DM646X_LPSC_EMAC
,
};
...
...
drivers/net/davinci_emac.c
View file @
5c7bbedb
...
...
@@ -2605,7 +2605,7 @@ static int __devinit davinci_emac_probe(struct platform_device *pdev)
unsigned
long
size
;
/* obtain emac clock from kernel */
emac_clk
=
clk_get
(
&
pdev
->
dev
,
"
EMACCLK
"
);
emac_clk
=
clk_get
(
&
pdev
->
dev
,
"
emac
"
);
if
(
IS_ERR
(
emac_clk
))
{
printk
(
KERN_ERR
"DaVinci EMAC: Failed to get EMAC clock
\n
"
);
return
-
EBUSY
;
...
...
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