From 2ac2ef2b15cd1d57ffedc1514943be792fdd61ea Mon Sep 17 00:00:00 2001 From: shatty Date: Sat, 5 Oct 2002 05:18:24 +0000 Subject: [PATCH] added stubs for scatter-gather and others git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1380 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/drivers/audio/echo/gals/gals.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 */ };