Style fixes

- Remove C++ - style comments
- Use proper device name in panic messages
This commit is contained in:
Oleksandr Tymoshenko 2012-11-23 19:20:38 +00:00
parent 8a5f892ea8
commit 12ad19bc4c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=243464

View File

@ -271,7 +271,6 @@ static int
gpiobus_child_location_str(device_t bus, device_t child, char *buf,
size_t buflen)
{
// struct gpiobus_ivar *devi = GPIOBUS_IVAR(child);
snprintf(buf, buflen, "pins=?");
return (0);
@ -349,7 +348,7 @@ gpiobus_acquire_bus(device_t busdev, device_t child)
GPIOBUS_ASSERT_LOCKED(sc);
if (sc->sc_owner)
panic("rb_cpldbus: cannot serialize the access to device.");
panic("gpiobus: cannot serialize the access to device.");
sc->sc_owner = child;
}
@ -362,9 +361,9 @@ gpiobus_release_bus(device_t busdev, device_t child)
GPIOBUS_ASSERT_LOCKED(sc);
if (!sc->sc_owner)
panic("rb_cpldbus: releasing unowned bus.");
panic("gpiobus: releasing unowned bus.");
if (sc->sc_owner != child)
panic("rb_cpldbus: you don't own the bus. game over.");
panic("gpiobus: you don't own the bus. game over.");
sc->sc_owner = NULL;
}