summaryrefslogtreecommitdiff
path: root/src/drivers/hdi/mouse.c
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-07-22 16:14:14 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-07-22 16:14:14 +0200
commit752ff17265f23d4fa9084368d2a90f66521a98e2 (patch)
tree2acad7fc117add49064f261cfbadcd341c7406b6 /src/drivers/hdi/mouse.c
parent95292027625e905080f37f585402f49ec49bc97f (diff)
downloadabaos-752ff17265f23d4fa9084368d2a90f66521a98e2.tar.gz
abaos-752ff17265f23d4fa9084368d2a90f66521a98e2.tar.bz2
separated video driver in a virtual video driver and a specific
VGA video driver
Diffstat (limited to 'src/drivers/hdi/mouse.c')
-rw-r--r--src/drivers/hdi/mouse.c6
1 files changed, 3 insertions, 3 deletions
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 )