X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=backend.c;h=e67f48247af5192e942c0b26806824a190e5baf4;hb=90282c82bce6cb108be2123d2393ce058c7aefdd;hp=34771f76ee854b494084e46317d9c55dcc8491a3;hpb=da1466d677afadcb17b12ebc1223ab0bdafe21db;p=libsigrok.git diff --git a/backend.c b/backend.c index 34771f76..e67f4824 100644 --- a/backend.c +++ b/backend.c @@ -28,7 +28,7 @@ */ SR_API int sr_init(void) { - return sr_hwplugins_load(); + return SR_OK; } /** @@ -38,7 +38,7 @@ SR_API int sr_init(void) */ SR_API int sr_exit(void) { - sr_hwplugins_cleanup(); + sr_hw_cleanup_all(); return SR_OK; }