summaryrefslogtreecommitdiffstats
path: root/include/console.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-12-17 15:08:01 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2014-12-17 15:08:04 +0100
commit2e1a6c9bcec588d8e3b4dade5fbf4be7265530e8 (patch)
tree7a5cca07a96118d9209622973c74aa086fc599b5 /include/console.h
parent631be8e6cbe003f469a7e6b54046a743b710d989 (diff)
downloadbarebox-2e1a6c9bcec588d8e3b4dade5fbf4be7265530e8.tar.gz
barebox-2e1a6c9bcec588d8e3b4dade5fbf4be7265530e8.tar.xz
console: Add set_active callback
The netconsole needs to be able to deny activation when the network has not been enabled. Add an optional callback to the console for this. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/console.h')
-rw-r--r--include/console.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/console.h b/include/console.h
index 97a406d9c9..beafb4d778 100644
--- a/include/console.h
+++ b/include/console.h
@@ -44,6 +44,7 @@ struct console_device {
int (*setbrg)(struct console_device *cdev, int baudrate);
void (*flush)(struct console_device *cdev);
int (*set_mode)(struct console_device *cdev, enum console_mode mode);
+ int (*set_active)(struct console_device *cdev, unsigned active);
char *devname;