Browse Source

Bugfix: bigpic: Accept other delimiters in Bitfury BF1 product string in autodetection

Luke Dashjr 12 years ago
parent
commit
8862b16e32
1 changed files with 1 additions and 1 deletions
  1. 1 1
      driver-bigpic.c

+ 1 - 1
driver-bigpic.c

@@ -173,7 +173,7 @@ static bool bigpic_detect_one(const char *devpath)
 //------------------------------------------------------------------------------
 static int bigpic_detect_auto(void)
 {
-	return serial_autodetect(bigpic_detect_one, "Bitfury_BF1");
+	return serial_autodetect(bigpic_detect_one, "Bitfury", "BF1");
 }
 
 //------------------------------------------------------------------------------