X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=backend.c;h=e67f48247af5192e942c0b26806824a190e5baf4;hb=d98c4e35ce3187a8d4618a6c26ce35de636d7b91;hp=308041ef4e583106d30cb37af4c33fafb12dc165;hpb=c532476aa7b9a4afb1f32d5b634348d3e825d6bb;p=libsigrok.git diff --git a/backend.c b/backend.c index 308041ef..e67f4824 100644 --- a/backend.c +++ b/backend.c @@ -28,7 +28,7 @@ */ SR_API int sr_init(void) { - return load_hwplugins(); + 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; }