aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/firewire
diff options
context:
space:
mode:
authorMax Khon <fjoe@FreeBSD.org>2009-02-09 16:57:07 +0000
committerMax Khon <fjoe@FreeBSD.org>2009-02-09 16:57:07 +0000
commit166366b5cd44e683f2dd6abba1b5176596fb3c67 (patch)
treebecffd23c148b0908032d99cb4b8b2e14ee97cf0 /sys/dev/firewire
parentca9e8f68b8e743ca773a0609b1a4a1709b2f20be (diff)
downloadsrc-166366b5cd44e683f2dd6abba1b5176596fb3c67.tar.gz
src-166366b5cd44e683f2dd6abba1b5176596fb3c67.zip
Remove unused variable.
Found with: Coverity Prevent(tm) CID: 3693
Notes
Notes: svn path=/head/; revision=188393
Diffstat (limited to 'sys/dev/firewire')
-rw-r--r--sys/dev/firewire/sbp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/firewire/sbp.c b/sys/dev/firewire/sbp.c
index e13ec859dbef..dc69f68c20fe 100644
--- a/sys/dev/firewire/sbp.c
+++ b/sys/dev/firewire/sbp.c
@@ -330,12 +330,11 @@ static char *orb_status1_serial_bus_error[] = {
static void
sbp_identify(driver_t *driver, device_t parent)
{
- device_t child;
SBP_DEBUG(0)
printf("sbp_identify\n");
END_DEBUG
- child = BUS_ADD_CHILD(parent, 0, "sbp", device_get_unit(parent));
+ BUS_ADD_CHILD(parent, 0, "sbp", device_get_unit(parent));
}
/*