aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_bus.c
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2004-02-24 19:31:30 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2004-02-24 19:31:30 +0000
commit854a417d92b5b2f31be0ed56a6b154bf75a3d1a0 (patch)
treeb275bc031253290206737350ebb0349fb4a5e9d9 /sys/kern/subr_bus.c
parent7ff8c436d3890e42fa1dce8faf5d61042c398591 (diff)
downloadsrc-854a417d92b5b2f31be0ed56a6b154bf75a3d1a0.tar.gz
src-854a417d92b5b2f31be0ed56a6b154bf75a3d1a0.zip
Whitespace cleanup
Notes
Notes: svn path=/head/; revision=126198
Diffstat (limited to 'sys/kern/subr_bus.c')
-rw-r--r--sys/kern/subr_bus.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c
index 4f2f836414a2..c54b1b8823aa 100644
--- a/sys/kern/subr_bus.c
+++ b/sys/kern/subr_bus.c
@@ -242,7 +242,7 @@ TAILQ_HEAD(devq, dev_event_info);
static struct dev_softc
{
int inuse;
- int nonblock;
+ int nonblock;
struct mtx mtx;
struct cv cv;
struct selinfo sel;
@@ -386,7 +386,7 @@ devctl_queue_data(char *data)
return;
n1->dei_data = data;
mtx_lock(&devsoftc.mtx);
- TAILQ_INSERT_TAIL(&devsoftc.devq, n1, dei_link);
+ TAILQ_INSERT_TAIL(&devsoftc.devq, n1, dei_link);
cv_broadcast(&devsoftc.cv);
mtx_unlock(&devsoftc.mtx);
selwakeup(&devsoftc.sel);
@@ -2224,7 +2224,7 @@ int
bus_child_pnpinfo_str(device_t child, char *buf, size_t buflen)
{
device_t parent;
-
+
parent = device_get_parent(child);
if (parent == NULL) {
*buf = '\0';
@@ -2237,7 +2237,7 @@ int
bus_child_location_str(device_t child, char *buf, size_t buflen)
{
device_t parent;
-
+
parent = device_get_parent(child);
if (parent == NULL) {
*buf = '\0';