Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
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
f4grx
NuttX RTOS
Commits
ce2a0b6b
Commit
ce2a0b6b
authored
9 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
Eliminate a warning
parent
b28bf55f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
arch
+1
-1
1 addition, 1 deletion
arch
configs
+1
-1
1 addition, 1 deletion
configs
drivers/serial/serial.c
+2
-2
2 additions, 2 deletions
drivers/serial/serial.c
with
4 additions
and
4 deletions
arch
@
2b89cb7d
Subproject commit
0761b677efa861b6369cea195968a59e4a6e6860
Subproject commit
2b89cb7d768c94c11a3902e85fd0858c4033ef74
This diff is collapsed.
Click to expand it.
configs
@
dd63cfca
Subproject commit
16d7a0dab2c4a48583d40bcf1dbf8e9a74316e91
Subproject commit
dd63cfca08a5a3baf8e829080bf9580723765566
This diff is collapsed.
Click to expand it.
drivers/serial/serial.c
+
2
−
2
View file @
ce2a0b6b
...
...
@@ -900,7 +900,7 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
irqrestore
(
state
);
*
(
int
*
)
arg
=
count
;
*
(
FAR
int
*
)
((
uintptr_t
)
arg
)
=
count
;
ret
=
0
;
}
break
;
...
...
@@ -923,7 +923,7 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
irqrestore
(
state
);
*
(
int
*
)
arg
=
count
;
*
(
FAR
int
*
)
((
uintptr_t
)
arg
)
=
count
;
ret
=
0
;
}
break
;
...
...
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