mirror of
				https://github.com/amazingfate/rtl8723ds.git
				synced 2025-11-03 21:48:42 +00:00 
			
		
		
		
	Merge pull request #1 from HonJEK/master
Fix for linux >=5.1 "get_ds" removed Thanks.
This commit is contained in:
		
						commit
						fd4403497d
					
				@ -1290,7 +1290,7 @@ static int isFileReadable(const char *path, u32 *sz)
 | 
				
			|||||||
		ret = PTR_ERR(fp);
 | 
							ret = PTR_ERR(fp);
 | 
				
			||||||
	else {
 | 
						else {
 | 
				
			||||||
		oldfs = get_fs();
 | 
							oldfs = get_fs();
 | 
				
			||||||
		set_fs(get_ds());
 | 
							set_fs(KERNEL_DS);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		if (1 != readFile(fp, &buf, 1))
 | 
							if (1 != readFile(fp, &buf, 1))
 | 
				
			||||||
			ret = PTR_ERR(fp);
 | 
								ret = PTR_ERR(fp);
 | 
				
			||||||
@ -1328,7 +1328,7 @@ static int retriveFromFile(const char *path, u8 *buf, u32 sz)
 | 
				
			|||||||
			RTW_INFO("%s openFile path:%s fp=%p\n", __FUNCTION__, path , fp);
 | 
								RTW_INFO("%s openFile path:%s fp=%p\n", __FUNCTION__, path , fp);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			oldfs = get_fs();
 | 
								oldfs = get_fs();
 | 
				
			||||||
			set_fs(get_ds());
 | 
								set_fs(KERNEL_DS);
 | 
				
			||||||
			ret = readFile(fp, buf, sz);
 | 
								ret = readFile(fp, buf, sz);
 | 
				
			||||||
			set_fs(oldfs);
 | 
								set_fs(oldfs);
 | 
				
			||||||
			closeFile(fp);
 | 
								closeFile(fp);
 | 
				
			||||||
@ -1363,7 +1363,7 @@ static int storeToFile(const char *path, u8 *buf, u32 sz)
 | 
				
			|||||||
			RTW_INFO("%s openFile path:%s fp=%p\n", __FUNCTION__, path , fp);
 | 
								RTW_INFO("%s openFile path:%s fp=%p\n", __FUNCTION__, path , fp);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			oldfs = get_fs();
 | 
								oldfs = get_fs();
 | 
				
			||||||
			set_fs(get_ds());
 | 
								set_fs(KERNEL_DS);
 | 
				
			||||||
			ret = writeFile(fp, buf, sz);
 | 
								ret = writeFile(fp, buf, sz);
 | 
				
			||||||
			set_fs(oldfs);
 | 
								set_fs(oldfs);
 | 
				
			||||||
			closeFile(fp);
 | 
								closeFile(fp);
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user