Capitalize the first letter of device descriptions

for consistency with the rest of the drivers.
This commit is contained in:
Maxime Henrion 2002-11-11 15:26:08 +00:00
parent 2d43d24ed4
commit 2ac8c61ac4
2 changed files with 4 additions and 4 deletions

View File

@ -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;
}

View File

@ -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;
}