Files
cdba/console.h
Dmitry Baryshkov 793969b11d device: split console_fd handling away
Split console_fd handling to a separate source file to simplify
device.c.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
2020-09-28 10:27:18 -05:00

10 lines
187 B
C

#ifndef __CONSOLE_H__
#define __CONSOLE_H__
#include "device.h"
void console_open(struct device *device);
int console_write(struct device *device, const void *buf, size_t len);
#endif