diff --git a/[refs] b/[refs] index c435dcc4b48c..2a36ef69d610 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 2852bcf7c12d3027c5d10f4f5ca5fada24ce8088 +refs/heads/master: 8522ee25f3a645577d41e71328cd4fcf8610dfeb diff --git a/trunk/drivers/ata/ahci.c b/trunk/drivers/ata/ahci.c index 656448c7fef9..6dc462105688 100644 --- a/trunk/drivers/ata/ahci.c +++ b/trunk/drivers/ata/ahci.c @@ -2446,6 +2446,8 @@ static void ahci_print_info(struct ata_host *host) speed_s = "1.5"; else if (speed == 2) speed_s = "3"; + else if (speed == 3) + speed_s = "6"; else speed_s = "?"; diff --git a/trunk/drivers/ata/libata-core.c b/trunk/drivers/ata/libata-core.c index f178a450ec08..9ae583554c8b 100644 --- a/trunk/drivers/ata/libata-core.c +++ b/trunk/drivers/ata/libata-core.c @@ -1007,6 +1007,7 @@ static const char *sata_spd_string(unsigned int spd) static const char * const spd_str[] = { "1.5 Gbps", "3.0 Gbps", + "6.0 Gbps", }; if (spd == 0 || (spd - 1) >= ARRAY_SIZE(spd_str))