summaryrefslogtreecommitdiffstats
path: root/usr.sbin/config
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1995-02-05 21:15:21 +0000
committerphk <phk@FreeBSD.org>1995-02-05 21:15:21 +0000
commit58be14ac2d689b3a51677eb065e5f1dacaa7a3a7 (patch)
tree6d3cc607dd4ce5e6a5ba0e8a8bb6ea14af327d50 /usr.sbin/config
parentdf28946018b5dcd2d04179d225d86b59b1712612 (diff)
downloadFreeBSD-src-58be14ac2d689b3a51677eb065e5f1dacaa7a3a7.zip
FreeBSD-src-58be14ac2d689b3a51677eb065e5f1dacaa7a3a7.tar.gz
Removed the name length limitations on the device-driver names entirely.
Now device-names can be more than 3 chars.
Diffstat (limited to 'usr.sbin/config')
-rw-r--r--usr.sbin/config/mkioconf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/config/mkioconf.c b/usr.sbin/config/mkioconf.c
index f8999b9..3270bbd 100644
--- a/usr.sbin/config/mkioconf.c
+++ b/usr.sbin/config/mkioconf.c
@@ -641,7 +641,7 @@ i386_ioconf()
!eq(mp->d_name, "isa"))
continue;
if(!old->d_name || strcmp(old->d_name, dp->d_name))
- fprintf(fp, "extern struct isa_driver %3.3sdriver;",
+ fprintf(fp, "extern struct isa_driver %sdriver;",
dp->d_name);
if(eq(dp->d_name, "wdc")) seen_wdc++;
if(eq(dp->d_name, "fdc")) seen_fdc++;
@@ -689,9 +689,9 @@ isa_biotab(fp, table)
if (dp->d_unit == QUES || mp == 0 ||
mp == TO_NEXUS || !eq(mp->d_name, table))
continue;
- fprintf(fp, "{ -1, &%3.3sdriver, %8.8s,",
+ fprintf(fp, "{ -1, &%sdriver, %s,",
mp->d_name, mp->d_port);
- fprintf(fp, "%6.6s, %2d, C 0x%05X, %5d, %8.8s, %2d, 0x%04X, %2d, 0, 0, 0, 1 },\n",
+ fprintf(fp, "%s, %2d, C 0x%05X, %5d, %s, %2d, 0x%04X, %2d, 0, 0, 0, 1 },\n",
sirq(mp->d_irq), mp->d_drq, mp->d_maddr,
mp->d_msize, shandler(mp), dp->d_unit,
dp->d_flags, dp->d_drive);
@@ -721,12 +721,12 @@ isa_devtab(fp, table, dev_idp)
mp = dp->d_conn;
if (mp == NULL || mp == TO_NEXUS || !eq(mp->d_name, "isa"))
continue;
- fprintf(fp, "{ %2d, &%3.3sdriver,", (*dev_idp)++, dp->d_name);
+ fprintf(fp, "{ %2d, &%sdriver,", (*dev_idp)++, dp->d_name);
if (dp->d_port)
- fprintf(fp, " %8.8s,", dp->d_port);
+ fprintf(fp, " %s,", dp->d_port);
else
fprintf(fp, " 0x%04x,", dp->d_portn);
- fprintf(fp, "%6.6s, %2d, C 0x%05X, %5d, %8.8s, %2d, 0x%04X, 0, 0, 0, 0, 1 },\n",
+ fprintf(fp, "%s, %2d, C 0x%05X, %5d, %s, %2d, 0x%04X, 0, 0, 0, 0, 1 },\n",
sirq(dp->d_irq), dp->d_drq, dp->d_maddr,
dp->d_msize, shandler(dp), dp->d_unit,
dp->d_flags);
OpenPOWER on IntegriCloud