From 873c175b8f626b1bd48d84513d9fd2e76a1cea3b Mon Sep 17 00:00:00 2001 From: mux Date: Mon, 11 Nov 2002 15:26:08 +0000 Subject: Capitalize the first letter of device descriptions for consistency with the rest of the drivers. --- sys/dev/fdc/fdc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/fdc') 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; } -- cgit v1.1