sigma/la8/demo: s/SR_PROBE_ANALOG/SR_PROBE_LOGIC/.

This commit is contained in:
Uwe Hermann 2012-11-11 19:40:14 +01:00
parent 472bbb464b
commit de6e0eca95
3 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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);