printk("Current WiFi chip is ESP8089.\n");
#endif
-#ifdef CONFIG_ESP8089_BK3515A
- count = sprintf(_buf, "%s", "ESP8089_BK3515A");
- printk("Current WiFi chip is ESP8089+BK3515A+[GPS optional].\n");
-#endif
return count;
}
{
int count = 0;
+#ifdef CONFIG_BK3515A_COMBO
+ count = sprintf(_buf, "%s", "true");
+ printk("Current WiFi chip is ESP8089+BK3515A Combo.\n");
+#endif
+
#ifdef CONFIG_BCM4329
count = sprintf(_buf, "%s", "false");
printk("Current WiFi chip BCM4329 doesn't support direct.(%s)\n", _buf);