compositor-fbdev: rename fbdev_output_disable_handler()
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>
Wed, 13 Sep 2017 14:25:41 +0000 (17:25 +0300)
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>
Wed, 4 Oct 2017 13:18:06 +0000 (16:18 +0300)
This is a more logical name for the function, matching the pattern used
in other backends and the hook names.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Reviewed-by: Ian Ray <ian.ray@ge.com>
Acked-by Daniel Stone <daniels@collabora.com>

libweston/compositor-fbdev.c

index 8a3ce0d..f5aa44b 100644 (file)
@@ -478,7 +478,7 @@ out_hw_surface:
 }
 
 static int
-fbdev_output_disable_handler(struct weston_output *base)
+fbdev_output_disable(struct weston_output *base)
 {
        struct fbdev_output *output = to_fbdev_output(base);
 
@@ -517,7 +517,7 @@ fbdev_output_create(struct fbdev_backend *backend,
        weston_output_init(&output->base, backend->compositor, "fbdev");
 
        output->base.destroy = fbdev_output_destroy;
-       output->base.disable = fbdev_output_disable_handler;
+       output->base.disable = fbdev_output_disable;
        output->base.enable = fbdev_output_enable;
 
        /* only one static mode in list */
@@ -556,7 +556,7 @@ fbdev_output_destroy(struct weston_output *base)
 
        weston_log("Destroying fbdev output.\n");
 
-       fbdev_output_disable_handler(base);
+       fbdev_output_disable(base);
 
        /* Remove the output. */
        weston_output_release(&output->base);