Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
6
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
P
pf-kernel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Labels
Merge Requests
1
Merge Requests
1
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Oleksandr Natalenko
pf-kernel
Commits
f8ef77d9
Commit
f8ef77d9
authored
Apr 11, 2014
by
Steven Miao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bf609: clock: drop unused clock bit set/clear functions
Signed-off-by:
Steven Miao
<
realmz6@gmail.com
>
parent
f57ac8a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
18 deletions
+0
-18
arch/blackfin/mach-bf609/clock.c
arch/blackfin/mach-bf609/clock.c
+0
-18
No files found.
arch/blackfin/mach-bf609/clock.c
View file @
f8ef77d9
...
...
@@ -73,24 +73,6 @@ static void clk_reg_write_mask(u32 reg, uint32_t val, uint32_t mask)
bfin_write32
(
reg
,
val2
);
}
static
void
clk_reg_set_bits
(
u32
reg
,
uint32_t
mask
)
{
u32
val
;
val
=
bfin_read32
(
reg
);
val
|=
mask
;
bfin_write32
(
reg
,
val
);
}
static
void
clk_reg_clear_bits
(
u32
reg
,
uint32_t
mask
)
{
u32
val
;
val
=
bfin_read32
(
reg
);
val
&=
~
mask
;
bfin_write32
(
reg
,
val
);
}
int
wait_for_pll_align
(
void
)
{
int
i
=
10000
;
...
...
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