From f94b16445ba0e1854fc6836b755d6027c58bc1b6 Mon Sep 17 00:00:00 2001 From: Patrick Huesmann Date: Thu, 11 Apr 2024 10:35:43 +0200 Subject: [PATCH] chore: update Python binding --- pyudmaio/src/PythonBinding.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyudmaio/src/PythonBinding.cpp b/pyudmaio/src/PythonBinding.cpp index 9878ac46..4d6bc102 100644 --- a/pyudmaio/src/PythonBinding.cpp +++ b/pyudmaio/src/PythonBinding.cpp @@ -86,8 +86,7 @@ PYBIND11_MODULE(binding, m) { py::class_>( m, "DmaBufferAbstract") - .def("get_phys_addr", &udmaio::DmaBufferAbstract::get_phys_addr) - .def("get_phys_size", &udmaio::DmaBufferAbstract::get_phys_size); + .def("get_phys_region", &udmaio::DmaBufferAbstract::get_phys_region); #if 0 // FIXME py::class_