Module Name: src
Committed By: joerg
Date: Tue May 24 16:37:04 UTC 2011
Modified Files:
src/sys/dev/cardbus: cardslot.c
Log Message:
Kill redundant ()
To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/sys/dev/cardbus/cardslot.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/cardbus/cardslot.c
diff -u src/sys/dev/cardbus/cardslot.c:1.52 src/sys/dev/cardbus/cardslot.c:1.53
--- src/sys/dev/cardbus/cardslot.c:1.52 Fri Mar 19 01:44:05 2010
+++ src/sys/dev/cardbus/cardslot.c Tue May 24 16:37:04 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: cardslot.c,v 1.52 2010/03/19 01:44:05 dyoung Exp $ */
+/* $NetBSD: cardslot.c,v 1.53 2011/05/24 16:37:04 joerg Exp $ */
/*
* Copyright (c) 1999 and 2000
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cardslot.c,v 1.52 2010/03/19 01:44:05 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cardslot.c,v 1.53 2011/05/24 16:37:04 joerg Exp $");
#include "opt_cardslot.h"
@@ -220,7 +220,7 @@
return 0;
}
- if ((cf->cf_loc[PCMCIABUSCF_CONTROLLER] == PCMCIABUSCF_CONTROLLER_DEFAULT)) {
+ if (cf->cf_loc[PCMCIABUSCF_CONTROLLER] == PCMCIABUSCF_CONTROLLER_DEFAULT) {
return (config_match(parent, cf, aux));
}