Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
kernel
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Linaro
qcomlt
kernel
Commits
f8ef77d9
Commit
f8ef77d9
authored
10 years ago
by
Steven Miao
Browse files
Options
Downloads
Patches
Plain Diff
bf609: clock: drop unused clock bit set/clear functions
Signed-off-by:
Steven Miao
<
realmz6@gmail.com
>
parent
f57ac8a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/blackfin/mach-bf609/clock.c
+0
-18
0 additions, 18 deletions
arch/blackfin/mach-bf609/clock.c
with
0 additions
and
18 deletions
arch/blackfin/mach-bf609/clock.c
+
0
−
18
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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment