mirror of
https://github.com/linux-msm/cdba.git
synced 2026-02-25 13:11:56 -08:00
Split console_fd handling to a separate source file to simplify device.c. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
10 lines
187 B
C
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
|