Author: sephe
Date: Tue Apr 26 06:41:36 2016
New Revision: 298618
URL: https://svnweb.freebsd.org/changeset/base/298618

Log:
  hyperv/stor: Set description properly in probe devmethod
  
  MFC after:    1 week
  Sponsored by: Microsoft OSTC

Modified:
  head/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c

Modified: head/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c
==============================================================================
--- head/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c        Tue Apr 26 
05:21:27 2016        (r298617)
+++ head/sys/dev/hyperv/storvsc/hv_storvsc_drv_freebsd.c        Tue Apr 26 
06:41:36 2016        (r298618)
@@ -924,6 +924,7 @@ storvsc_probe(device_t dev)
                        if(bootverbose)
                                device_printf(dev,
                                        "Enlightened ATA/IDE detected\n");
+                       device_set_desc(dev, 
g_drv_props_table[DRIVER_BLKVSC].drv_desc);
                        ret = BUS_PROBE_DEFAULT;
                } else if(bootverbose)
                        device_printf(dev, "Emulated ATA/IDE set 
(hw.ata.disk_enable set)\n");
@@ -931,6 +932,7 @@ storvsc_probe(device_t dev)
        case DRIVER_STORVSC:
                if(bootverbose)
                        device_printf(dev, "Enlightened SCSI device 
detected\n");
+               device_set_desc(dev, 
g_drv_props_table[DRIVER_STORVSC].drv_desc);
                ret = BUS_PROBE_DEFAULT;
                break;
        default:
@@ -982,7 +984,6 @@ storvsc_attach(device_t dev)
        /* fill in device specific properties */
        sc->hs_unit     = device_get_unit(dev);
        sc->hs_dev      = hv_dev;
-       device_set_desc(dev, g_drv_props_table[stor_type].drv_desc);
 
        LIST_INIT(&sc->hs_free_list);
        mtx_init(&sc->hs_lock, "hvslck", NULL, MTX_DEF);
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to