Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
11
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
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
Clea OS
bsp
nxp
linux-seco-imx
Commits
d93efab8
Commit
d93efab8
authored
19 years ago
by
Ralf Baechle
Browse files
Options
Downloads
Patches
Plain Diff
[MIPS] DDB5477: Fix unused variable warning.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
16212017
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/mips/ddb5xxx/ddb5477/lcd44780.c
+7
-3
7 additions, 3 deletions
arch/mips/ddb5xxx/ddb5477/lcd44780.c
with
7 additions
and
3 deletions
arch/mips/ddb5xxx/ddb5477/lcd44780.c
+
7
−
3
View file @
d93efab8
...
@@ -55,7 +55,7 @@ void lcd44780_data(unsigned char c)
...
@@ -55,7 +55,7 @@ void lcd44780_data(unsigned char c)
void
lcd44780_puts
(
const
char
*
s
)
void
lcd44780_puts
(
const
char
*
s
)
{
{
int
i
,
j
;
int
j
;
int
pos
=
0
;
int
pos
=
0
;
lcd44780_command
(
LCD44780_CLEAR
);
lcd44780_command
(
LCD44780_CLEAR
);
...
@@ -76,8 +76,12 @@ void lcd44780_puts(const char* s)
...
@@ -76,8 +76,12 @@ void lcd44780_puts(const char* s)
}
}
}
}
#ifdef LCD44780_PUTS_PAUSE
#ifdef LCD44780_PUTS_PAUSE
for
(
i
=
1
;
i
<
2000
;
i
++
)
{
lcd44780_wait
();
int
i
;
for
(
i
=
1
;
i
<
2000
;
i
++
)
lcd44780_wait
();
}
#endif
#endif
}
}
...
...
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