sigma/la8/demo: s/SR_PROBE_ANALOG/SR_PROBE_LOGIC/.
This commit is contained in:
parent
472bbb464b
commit
de6e0eca95
|
@ -510,7 +510,7 @@ static GSList *hw_scan(GSList *options)
|
|||
sdi->driver = adi;
|
||||
|
||||
for (i = 0; probe_names[i]; i++) {
|
||||
if (!(probe = sr_probe_new(i, SR_PROBE_ANALOG, TRUE,
|
||||
if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
|
||||
probe_names[i])))
|
||||
return NULL;
|
||||
sdi->probes = g_slist_append(sdi->probes, probe);
|
||||
|
|
|
@ -159,7 +159,7 @@ static GSList *hw_scan(GSList *options)
|
|||
sdi->priv = devc;
|
||||
|
||||
for (i = 0; probe_names[i]; i++) {
|
||||
if (!(probe = sr_probe_new(i, SR_PROBE_ANALOG, TRUE,
|
||||
if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
|
||||
probe_names[i])))
|
||||
return NULL;
|
||||
sdi->probes = g_slist_append(sdi->probes, probe);
|
||||
|
|
|
@ -182,7 +182,7 @@ static GSList *hw_scan(GSList *options)
|
|||
sdi->driver = ddi;
|
||||
|
||||
for (i = 0; probe_names[i]; i++) {
|
||||
if (!(probe = sr_probe_new(i, SR_PROBE_ANALOG, TRUE,
|
||||
if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
|
||||
probe_names[i])))
|
||||
return NULL;
|
||||
sdi->probes = g_slist_append(sdi->probes, probe);
|
||||
|
|
Loading…
Reference in New Issue