1
0
Fork 0

greybus: control: Use gb_builtin_protocol_driver()

No need to write simple init/exit routines, use
gb_builtin_protocol_driver().

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Alex Elder <elder@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
hifive-unleashed-5.1
Viresh Kumar 2015-07-01 12:13:53 +05:30 committed by Greg Kroah-Hartman
parent e18822e3d0
commit 463e8736a3
1 changed files with 1 additions and 10 deletions

View File

@ -138,13 +138,4 @@ static struct gb_protocol control_protocol = {
.connection_exit = gb_control_connection_exit,
.request_recv = gb_control_request_recv,
};
int gb_control_protocol_init(void)
{
return gb_protocol_register(&control_protocol);
}
void gb_control_protocol_exit(void)
{
gb_protocol_deregister(&control_protocol);
}
gb_builtin_protocol_driver(control_protocol);