sparc64: fix warnings for ofw function calls

This commit is contained in:
Gedare Bloom
2014-10-13 15:21:14 -04:00
parent 2d7029d559
commit a0f27360c9
2 changed files with 3 additions and 2 deletions

View File

@@ -10,8 +10,7 @@
#include <libchip/serial.h>
extern void ofw_write(const char *,const int );
extern void ofw_read(void *,int );
#include <boot/ofw.h>
int sun4v_console_device_first_open(int major, int minor, void *arg)
{

View File

@@ -100,6 +100,8 @@ extern int ofw_package_to_path(const phandle device, char *buf, const int buflen
extern int ofw(ofw_args_t *arg);
extern unsigned long ofw_call(const char *service, const int nargs, const int nret, ofw_arg_t *rets, ...);
extern void ofw_write(const char *str, const int len);
extern void ofw_read(void *str, const int len);
extern unsigned int ofw_get_address_cells(const phandle device);
extern unsigned int ofw_get_size_cells(const phandle device);
extern void *ofw_translate(const void *virt);