shl: move log.[ch] to shl_log.[ch]
[platform/upstream/kmscon.git] / src / text_bbulk.c
index eb87441..3f238c1 100644 (file)
@@ -36,9 +36,9 @@
 #include <stdbool.h>
 #include <stdlib.h>
 #include <string.h>
-#include "log.h"
+#include "shl_log.h"
 #include "text.h"
-#include "uterm.h"
+#include "uterm_video.h"
 
 #define LOG_SUBSYSTEM "text_bbulk"
 
@@ -185,21 +185,3 @@ struct kmscon_text_ops kmscon_text_bbulk_ops = {
        .render = bbulk_render,
        .abort = NULL,
 };
-
-int kmscon_text_bbulk_load(void)
-{
-       int ret;
-
-       ret = kmscon_text_register(&kmscon_text_bbulk_ops);
-       if (ret) {
-               log_error("cannot register bbulk renderer");
-               return ret;
-       }
-
-       return 0;
-}
-
-void kmscon_text_bbulk_unload(void)
-{
-       kmscon_text_unregister(kmscon_text_bbulk_ops.name);
-}