diff options
| author | Maxime Henrion <mux@FreeBSD.org> | 2002-11-11 15:26:08 +0000 |
|---|---|---|
| committer | Maxime Henrion <mux@FreeBSD.org> | 2002-11-11 15:26:08 +0000 |
| commit | 2ac8c61ac4394d5247be860034e5401a5105689a (patch) | |
| tree | 0d29763a08288775815d67e2fa110c374f7d962d | |
| parent | 2d43d24ed44e21ea448e8f1587a17c1732cf682e (diff) | |
Notes
| -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; } |
