summaryrefslogtreecommitdiff
path: root/src/drivers/video/video.h
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-07-24 07:10:19 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-07-24 07:10:19 +0200
commit7a58673a4eb00f386dcea252d3015b32847fbc17 (patch)
tree1cb46ab72c5ef82175474995707d179e7c2cb574 /src/drivers/video/video.h
parentedd2fe548d1c9b46625013e1dc24349256eb0fc9 (diff)
downloadabaos-7a58673a4eb00f386dcea252d3015b32847fbc17.tar.gz
abaos-7a58673a4eb00f386dcea252d3015b32847fbc17.tar.bz2
added print_name method to all drivers
removed superfluos empty methods in abstract drivers moved printing of info to method in rtl8139 driver
Diffstat (limited to 'src/drivers/video/video.h')
-rw-r--r--src/drivers/video/video.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/drivers/video/video.h b/src/drivers/video/video.h
index 8cfebb3..037d703 100644
--- a/src/drivers/video/video.h
+++ b/src/drivers/video/video.h
@@ -48,10 +48,6 @@ typedef struct {
} video_vtable_t;
void video_init( video_t *video, interrupt_t *interrupt, void *context );
-void video_activate( void *obj );
-void video_deactivate( void *obj );
-void video_deinit( void *obj );
-void video_print_info( void *obj );
video_mode_t video_make_mode( const video_mode_type_t mode_type, const int x, const int y, const int color_depth );