diff --git a/src/add-ons/kernel/drivers/audio/echo/gals/gals.cpp b/src/add-ons/kernel/drivers/audio/echo/gals/gals.cpp index 0f5c4df75f..4a8f2e2225 100644 --- a/src/add-ons/kernel/drivers/audio/echo/gals/gals.cpp +++ b/src/add-ons/kernel/drivers/audio/echo/gals/gals.cpp @@ -78,10 +78,10 @@ device_hooks gals_hooks = { gals_control, /* -> control entry point */ gals_read, /* -> read entry point */ gals_write, /* -> write entry point */ - NULL, /* start select */ - NULL, /* stop select */ - NULL, /* scatter-gather read from the device */ - NULL /* scatter-gather write to the device */ + gals_start, /* start select */ + gals_select, /* stop select */ + gals_vector_read, /* scatter-gather read from the device */ + gals_vector_write /* scatter-gather write to the device */ };