lenovo: Don't use extern with functions
Change-Id: I8313ba1d93922297e5061701dad47d07617d1dcd Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/17804 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
7ce1a75602
commit
2c34e743a1
@ -16,7 +16,7 @@
|
|||||||
#ifndef THINKPAD_T400_DOCK_H
|
#ifndef THINKPAD_T400_DOCK_H
|
||||||
#define THINKPAD_T400_DOCK_H
|
#define THINKPAD_T400_DOCK_H
|
||||||
|
|
||||||
extern void dock_connect(void);
|
void dock_connect(void);
|
||||||
extern void dock_disconnect(void);
|
void dock_disconnect(void);
|
||||||
extern int dock_present(void);
|
int dock_present(void);
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,11 +16,11 @@
|
|||||||
#ifndef THINKPAD_X60_DOCK_H
|
#ifndef THINKPAD_X60_DOCK_H
|
||||||
#define THINKPAD_X60_DOCK_H
|
#define THINKPAD_X60_DOCK_H
|
||||||
|
|
||||||
extern int dock_connect(void);
|
int dock_connect(void);
|
||||||
extern void dock_disconnect(void);
|
void dock_disconnect(void);
|
||||||
extern int dock_present(void);
|
int dock_present(void);
|
||||||
extern int dlpc_init(void);
|
int dlpc_init(void);
|
||||||
|
|
||||||
extern int legacy_io_present(void);
|
int legacy_io_present(void);
|
||||||
extern void legacy_io_init(void);
|
void legacy_io_init(void);
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#ifndef THINKPAD_X200_DOCK_H
|
#ifndef THINKPAD_X200_DOCK_H
|
||||||
#define THINKPAD_X200_DOCK_H
|
#define THINKPAD_X200_DOCK_H
|
||||||
|
|
||||||
extern void dock_connect(void);
|
void dock_connect(void);
|
||||||
extern void dock_disconnect(void);
|
void dock_disconnect(void);
|
||||||
extern int dock_present(void);
|
int dock_present(void);
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#ifndef THINKPAD_X201_DOCK_H
|
#ifndef THINKPAD_X201_DOCK_H
|
||||||
#define THINKPAD_X201_DOCK_H
|
#define THINKPAD_X201_DOCK_H
|
||||||
|
|
||||||
extern void dock_connect(void);
|
void dock_connect(void);
|
||||||
extern void dock_disconnect(void);
|
void dock_disconnect(void);
|
||||||
extern int dock_present(void);
|
int dock_present(void);
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,9 +16,9 @@
|
|||||||
#ifndef THINKPAD_X60_DOCK_H
|
#ifndef THINKPAD_X60_DOCK_H
|
||||||
#define THINKPAD_X60_DOCK_H
|
#define THINKPAD_X60_DOCK_H
|
||||||
|
|
||||||
extern int dock_connect(void);
|
int dock_connect(void);
|
||||||
extern void dock_disconnect(void);
|
void dock_disconnect(void);
|
||||||
extern int dock_present(void);
|
int dock_present(void);
|
||||||
extern int dlpc_init(void);
|
int dlpc_init(void);
|
||||||
extern int dock_ultrabay_device_present(void);
|
int dock_ultrabay_device_present(void);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user