mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 4ec1cada65cc1876277f5325b78019667f6e18c4 Mon Sep 17 00:00:00 2001
 | 
						|
From: Jes Sorensen <Jes.Sorensen@redhat.com>
 | 
						|
Date: Fri, 22 Jul 2016 11:44:12 -0400
 | 
						|
Subject: [PATCH] rtl8xxxu: Use gen2 H2C commands for 8188eu
 | 
						|
 | 
						|
The 8188eu is a weird hybrid between the old gen1 and newer gen2
 | 
						|
APIs. It uses the newer API for H2C commands, hence use
 | 
						|
rtl8xxxu_gen2_update_rate_mask() and rtl8xxxu_gen2_report_connect().
 | 
						|
 | 
						|
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
 | 
						|
---
 | 
						|
 drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8188e.c | 2 ++
 | 
						|
 1 file changed, 2 insertions(+)
 | 
						|
 | 
						|
--- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8188e.c
 | 
						|
+++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8188e.c
 | 
						|
@@ -1128,6 +1128,8 @@ struct rtl8xxxu_fileops rtl8188eu_fops =
 | 
						|
 	.config_channel = rtl8188eu_config_channel,
 | 
						|
 	.parse_rx_desc = rtl8xxxu_parse_rxdesc16,
 | 
						|
 	.usb_quirks = rtl8188e_usb_quirks,
 | 
						|
+	.update_rate_mask = rtl8xxxu_gen2_update_rate_mask,
 | 
						|
+	.report_connect = rtl8xxxu_gen2_report_connect,
 | 
						|
 	.writeN_block_size = 128,
 | 
						|
 	.rx_desc_size = sizeof(struct rtl8xxxu_rxdesc16),
 | 
						|
 	.tx_desc_size = sizeof(struct rtl8xxxu_txdesc32),
 |