From 705f7c9b9e48d2dd0d8a406e783eb972f56d3ce3 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 29 Jun 2008 05:43:54 +0200 Subject: enable all transports --- smartkit.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/smartkit.c b/smartkit.c index 15ee256..2219cc0 100644 --- a/smartkit.c +++ b/smartkit.c @@ -580,17 +580,16 @@ int sk_disk_open(const gchar *name, SkDevice **_d) { if ((d->fd = open(name, O_RDWR|O_NOCTTY)) < 0) goto fail; -/* d->type = SK_DEVICE_TYPE_ATA_PASSTHROUGH; */ -/* if (sk_disk_identify_device(d) < 0) { */ - - d->type = SK_DEVICE_TYPE_ATA; + d->type = SK_DEVICE_TYPE_ATA_PASSTHROUGH; if (sk_disk_identify_device(d) < 0) { -/* d->type = SK_DEVICE_TYPE_SCSI; */ -/* if (sk_disk_identify_device(d) < 0) { */ + d->type = SK_DEVICE_TYPE_ATA; + if (sk_disk_identify_device(d) < 0) { + + d->type = SK_DEVICE_TYPE_SCSI; + if (sk_disk_identify_device(d) < 0) goto fail; -/* } */ -/* } */ + } } parse_identify(d->identify, serial, firmware, model); -- cgit