mirror of
https://github.com/linux-msm/cdba.git
synced 2026-02-25 13:11:56 -08:00
Add support for send_break to the generic console implementation. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
11 lines
235 B
C
11 lines
235 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);
|
|
void console_send_break(struct device *device);
|
|
|
|
#endif
|