Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
179183bf
Commit
179183bf
authored
Feb 18, 2008
by
Kyle McMartin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PARISC] remove unused pdc_iodc_printf function
Signed-off-by:
Kyle McMartin
<
kyle@parisc-linux.org
>
parent
e2be75ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
14 deletions
+0
-14
arch/parisc/kernel/pdc_cons.c
arch/parisc/kernel/pdc_cons.c
+0
-13
include/asm-parisc/pdc.h
include/asm-parisc/pdc.h
+0
-1
No files found.
arch/parisc/kernel/pdc_cons.c
View file @
179183bf
...
@@ -58,19 +58,6 @@ static void pdc_console_write(struct console *co, const char *s, unsigned count)
...
@@ -58,19 +58,6 @@ static void pdc_console_write(struct console *co, const char *s, unsigned count)
pdc_iodc_print
(
s
,
count
);
pdc_iodc_print
(
s
,
count
);
}
}
void
pdc_printf
(
const
char
*
fmt
,
...)
{
va_list
args
;
char
buf
[
1024
];
int
i
,
len
;
va_start
(
args
,
fmt
);
len
=
vscnprintf
(
buf
,
sizeof
(
buf
),
fmt
,
args
);
va_end
(
args
);
pdc_iodc_print
(
buf
,
len
);
}
int
pdc_console_poll_key
(
struct
console
*
co
)
int
pdc_console_poll_key
(
struct
console
*
co
)
{
{
return
pdc_iodc_getc
();
return
pdc_iodc_getc
();
...
...
include/asm-parisc/pdc.h
View file @
179183bf
...
@@ -646,7 +646,6 @@ void pdc_io_reset(void);
...
@@ -646,7 +646,6 @@ void pdc_io_reset(void);
void
pdc_io_reset_devices
(
void
);
void
pdc_io_reset_devices
(
void
);
int
pdc_iodc_getc
(
void
);
int
pdc_iodc_getc
(
void
);
int
pdc_iodc_print
(
unsigned
char
*
str
,
unsigned
count
);
int
pdc_iodc_print
(
unsigned
char
*
str
,
unsigned
count
);
void
pdc_printf
(
const
char
*
fmt
,
...);
void
pdc_emergency_unlock
(
void
);
void
pdc_emergency_unlock
(
void
);
int
pdc_sti_call
(
unsigned
long
func
,
unsigned
long
flags
,
int
pdc_sti_call
(
unsigned
long
func
,
unsigned
long
flags
,
...
...
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