diff options
Diffstat (limited to 'sys/dev/fdc/fdc.c')
-rw-r--r-- | sys/dev/fdc/fdc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c index fdd2ca4..507daa9 100644 --- a/sys/dev/fdc/fdc.c +++ b/sys/dev/fdc/fdc.c @@ -881,11 +881,11 @@ fdc_probe(device_t dev) case 0x81: /* not mentioned in any hardware doc */ case 0x90: device_set_desc(dev, - "enhanced floppy controller (i82077, NE72065 or clone)"); + "Enhanced floppy controller (i82077, NE72065 or clone)"); fdc->fdct = FDC_ENHANCED; break; default: - device_set_desc(dev, "generic floppy controller"); + device_set_desc(dev, "Generic floppy controller"); fdc->fdct = FDC_UNKNOWN; break; } |