From e85be8c2be54e911099abe07d6374d6642ce8836 Mon Sep 17 00:00:00 2001 From: gwl Date: Mon, 20 Aug 2012 14:50:02 +0800 Subject: [PATCH] add rtl8188eu to rkwifi_sys_iface.c --- drivers/net/wireless/wifi_sys/rkwifi_sys_iface.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/wifi_sys/rkwifi_sys_iface.c b/drivers/net/wireless/wifi_sys/rkwifi_sys_iface.c index 8963eae6c6ec..593d078d4550 100644 --- a/drivers/net/wireless/wifi_sys/rkwifi_sys_iface.c +++ b/drivers/net/wireless/wifi_sys/rkwifi_sys_iface.c @@ -19,8 +19,13 @@ static ssize_t wifi_chip_read(struct class *cls, char *_buf) #endif #ifdef CONFIG_RTL8192CU - count = sprintf(_buf, "%s", "RTL8188"); - printk("Current WiFi chip is RTL8188.\n"); + count = sprintf(_buf, "%s", "RTL8188CU"); + printk("Current WiFi chip is RTL8188CU.\n"); +#endif + +#ifdef CONFIG_RTL8188EU + count = sprintf(_buf, "%s", "RTL8188EU"); + printk("Current WiFi chip is RTL8188EU.\n"); #endif #ifdef CONFIG_BCM4330 -- 2.34.1