summaryrefslogtreecommitdiff
path: root/py/pykms
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2019-01-17 17:24:51 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2019-01-17 17:24:51 +0200
commitd49777b00e844ac77e0f3b0cfb9b9e07257b4c26 (patch)
tree225524d341746cf432784328c6884521adfb9379 /py/pykms
parent95b49cfbb87f8c97bfeeeb36b7a0b4e2c37fe9f3 (diff)
Revert "py: add open_modesetting_card"
This reverts commit 27f1c296c4f5996227b28215400c787ea018862b.
Diffstat (limited to 'py/pykms')
-rw-r--r--py/pykms/pykmsbase.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/py/pykms/pykmsbase.cpp b/py/pykms/pykmsbase.cpp
index 4b46d55..668e6e3 100644
--- a/py/pykms/pykmsbase.cpp
+++ b/py/pykms/pykmsbase.cpp
@@ -20,8 +20,6 @@ static vector<unique_ptr<T, py::nodelete>> convert_vector(const vector<T*>& sour
void init_pykmsbase(py::module &m)
{
py::class_<Card>(m, "Card")
- .def_static("open_modesetting_card", []() { return Card::open_modesetting_card(); })
-
.def(py::init<>())
.def(py::init<const string&>())
.def(py::init<const string&, uint32_t>())