mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	samples: mei: use /dev/mei0 instead of /dev/mei
The device was moved from misc device to character devices to support multiple mei devices. Cc: <stable@vger.kernel.org> #v4.9+ Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
		
							parent
							
								
									efe814e90b
								
							
						
					
					
						commit
						c4a46acf1d
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -117,7 +117,7 @@ static bool mei_init(struct mei *me, const uuid_le *guid,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	me->verbose = verbose;
 | 
						me->verbose = verbose;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	me->fd = open("/dev/mei", O_RDWR);
 | 
						me->fd = open("/dev/mei0", O_RDWR);
 | 
				
			||||||
	if (me->fd == -1) {
 | 
						if (me->fd == -1) {
 | 
				
			||||||
		mei_err(me, "Cannot establish a handle to the Intel MEI driver\n");
 | 
							mei_err(me, "Cannot establish a handle to the Intel MEI driver\n");
 | 
				
			||||||
		goto err;
 | 
							goto err;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue