From 89143fb3b0cc9897b7aa9ec8b6028a6c624887d4 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Fri, 7 Sep 2012 14:35:31 +0200 Subject: serial: Rename .init() and .uninit() in serial_device Rename .init() to .start() and .uninit() to .stop() in struct serial_device. This allows aligning struct serial_device with closer to struct stdio_dev. The real goal here is to allow these two structures to converge together and eventually make one to be a superset of the other. Signed-off-by: Marek Vasut Cc: Marek Vasut Signed-off-by: Tom Rini --- include/serial.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/serial.h') diff --git a/include/serial.h b/include/serial.h index e021a4cf6f..84a77a1b53 100644 --- a/include/serial.h +++ b/include/serial.h @@ -7,8 +7,8 @@ struct serial_device { /* enough bytes to match alignment of following func pointer */ char name[16]; - int (*init)(void); - int (*uninit)(void); + int (*start)(void); + int (*stop)(void); void (*setbrg)(void); int (*getc)(void); int (*tstc)(void); -- cgit v1.2.3