Synchronize make_dev() for pcfclock devices to the values in MAKEDEV

for consistency.

Submitted by:	kris
This commit is contained in:
Robert Watson 2002-12-27 16:32:10 +00:00
parent 3055da59a9
commit 805229eb77

View File

@ -147,7 +147,7 @@ pcfclock_attach(device_t dev)
unit = device_get_unit(dev);
make_dev(&pcfclock_cdevsw, unit,
UID_ROOT, GID_WHEEL, 0444, PCFCLOCK_NAME "%d", unit);
UID_ROOT, GID_WHEEL, 0400, PCFCLOCK_NAME "%d", unit);
return (0);
}