Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
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-2.6.23
Commits
d93efab8
Commit
d93efab8
authored
Nov 11, 2005
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] DDB5477: Fix unused variable warning.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
16212017
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
arch/mips/ddb5xxx/ddb5477/lcd44780.c
arch/mips/ddb5xxx/ddb5477/lcd44780.c
+7
-3
No files found.
arch/mips/ddb5xxx/ddb5477/lcd44780.c
View file @
d93efab8
...
...
@@ -55,7 +55,7 @@ void lcd44780_data(unsigned char c)
void
lcd44780_puts
(
const
char
*
s
)
{
int
i
,
j
;
int
j
;
int
pos
=
0
;
lcd44780_command
(
LCD44780_CLEAR
);
...
...
@@ -76,8 +76,12 @@ void lcd44780_puts(const char* s)
}
}
#ifdef LCD44780_PUTS_PAUSE
for
(
i
=
1
;
i
<
2000
;
i
++
)
lcd44780_wait
();
{
int
i
;
for
(
i
=
1
;
i
<
2000
;
i
++
)
lcd44780_wait
();
}
#endif
}
...
...
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