From 752ff17265f23d4fa9084368d2a90f66521a98e2 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 22 Jul 2017 16:14:14 +0200 Subject: separated video driver in a virtual video driver and a specific VGA video driver --- src/drivers/hdi/mouse.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/drivers/hdi/mouse.c') diff --git a/src/drivers/hdi/mouse.c b/src/drivers/hdi/mouse.c index 85d4c82..a0b62f9 100644 --- a/src/drivers/hdi/mouse.c +++ b/src/drivers/hdi/mouse.c @@ -32,17 +32,17 @@ void mouse_deinit( void *obj ) void mouse_activate( void *obj ) { - kernel_panic( "Activating generic mouse driver should not be called directly." ); + kernel_panic( "Calling abstract method in file %s at line %d.", __FILE__, __LINE__ ); } void mouse_deactivate( void *obj ) { - kernel_panic( "Deactivating generic mouse driver should not be called directly." ); + kernel_panic( "Calling abstract method in file %s at line %d.", __FILE__, __LINE__ ); } void mouse_print_info( void *obj ) { - kernel_panic( "Printing info of generic mouse driver should not be called directly." ); + kernel_panic( "Calling abstract method in file %s at line %d.", __FILE__, __LINE__ ); } void mouse_set_resolution( void *obj, const uint32_t res_x, const uint32_t res_y ) -- cgit v1.2.3-54-g00ecf