We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7de42a commit f94b164Copy full SHA for f94b164
1 file changed
pyudmaio/src/PythonBinding.cpp
@@ -86,8 +86,7 @@ PYBIND11_MODULE(binding, m) {
86
py::class_<udmaio::DmaBufferAbstract, std::shared_ptr<udmaio::DmaBufferAbstract>>(
87
m,
88
"DmaBufferAbstract")
89
- .def("get_phys_addr", &udmaio::DmaBufferAbstract::get_phys_addr)
90
- .def("get_phys_size", &udmaio::DmaBufferAbstract::get_phys_size);
+ .def("get_phys_region", &udmaio::DmaBufferAbstract::get_phys_region);
91
92
#if 0 // FIXME
93
py::class_<udmaio::FpgaMemBufferOverAxi,
0 commit comments