diff options
| -rw-r--r-- | sys/dev/fdc/fdc.c | 4 | ||||
| -rw-r--r-- | sys/isa/fd.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c index fdd2ca4d1478..507daa91019e 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; } diff --git a/sys/isa/fd.c b/sys/isa/fd.c index fdd2ca4d1478..507daa91019e 100644 --- a/sys/isa/fd.c +++ b/sys/isa/fd.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; } |
