Remove redundant device_is_authenticating check
diff --git a/src/event.c b/src/event.c
index fa47e36..ff768c0 100644
--- a/src/event.c
+++ b/src/event.c
@@ -251,16 +251,6 @@
 	if (!device)
 		return;
 
-	if (!device_is_authenticating(device)) {
-		/* This means that there was no pending PIN or SSP token
-		 * request from the controller, i.e. this is not a new
-		 * pairing */
-		DBG("no pending auth request");
-		return;
-	}
-
-	/* If this is a new pairing send the appropriate reply and signal for
-	 * it and proceed with service discovery */
 	device_bonding_complete(device, status);
 }