X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=include%2Flibsigrok%2Flibsigrok.h;h=233e04a6ce969dd881c02f3c6d5092536e9a356e;hb=41812aca436805b0614f2a8f31cf2f8ce494aea0;hp=42cdcaa5da49ccaad10671b0750044bbe2867e3d;hpb=e77e32a3bebcaadabb12eb29ceaf2d30371d16f0;p=libsigrok.git diff --git a/include/libsigrok/libsigrok.h b/include/libsigrok/libsigrok.h index 42cdcaa5..233e04a6 100644 --- a/include/libsigrok/libsigrok.h +++ b/include/libsigrok/libsigrok.h @@ -624,7 +624,7 @@ enum sr_configkey { /** The device can act as an LCR meter. */ SR_CONF_LCRMETER, - /** The device can act as an LCR meter. */ + /** The device can act as an electronic load. */ SR_CONF_ELECTRONIC_LOAD, /*--- Driver scan options -------------------------------------------*/ @@ -989,7 +989,7 @@ enum sr_dev_inst_type { SR_INST_SCPI, /** Device-instance type for user-created "devices". */ SR_INST_USER, - /** Device instance type for modbus devices. */ + /** Device instance type for Modbus devices. */ SR_INST_MODBUS, }; @@ -1073,8 +1073,8 @@ struct sr_dev_driver { void *cb_data); /* Dynamic */ - /** Device driver private data. Initialized by init(). */ - void *priv; + /** Device driver context, considered private. Initialized by init(). */ + void *context; }; /**