hameg-hmo: Populate sdi->serial_num

This commit is contained in:
Soeren Apel 2014-10-16 22:42:38 +02:00 committed by Bert Vermeulen
parent d08667c53b
commit b33db61c48
1 changed files with 6 additions and 3 deletions

View File

@ -80,16 +80,19 @@ static struct sr_dev_inst *hmo_probe_serial_device(struct sr_scpi_dev_inst *scpi
hw_info->firmware_version))) {
goto fail;
}
sdi->driver = di;
sdi->inst_type = SR_INST_SCPI;
sdi->conn = scpi;
sdi->serial_num = g_strdup(hw_info->serial_number);
sr_scpi_hw_info_free(hw_info);
hw_info = NULL;
if (!(devc = g_try_malloc0(sizeof(struct dev_context))))
goto fail;
sdi->driver = di;
sdi->priv = devc;
sdi->inst_type = SR_INST_SCPI;
sdi->conn = scpi;
if (hmo_init_device(sdi) != SR_OK)
goto fail;