ssbi: Fix exit mismatch in remove function
msm_ssbi_remove is referenced with __exit_p, but not declared with __exit. This causes a warning when the driver is not built as a module: drivers/ssbi/ssbi.c:341:23: warning: 'msm_ssbi_remove' defined but not used [-Wunused-function] The remove is needed for unbinding to work, even if not compiled as a module, so just remove it. Signed-off-by: David Brown <davidb@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
		
					parent
					
						
							
								a1a906c572
							
						
					
				
			
			
				commit
				
					
						7b67d56108
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -372,7 +372,7 @@ static int msm_ssbi_remove(struct platform_device *pdev)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static struct platform_driver msm_ssbi_driver = {
 | 
					static struct platform_driver msm_ssbi_driver = {
 | 
				
			||||||
	.probe		= msm_ssbi_probe,
 | 
						.probe		= msm_ssbi_probe,
 | 
				
			||||||
	.remove		= __exit_p(msm_ssbi_remove),
 | 
						.remove		= msm_ssbi_remove,
 | 
				
			||||||
	.driver		= {
 | 
						.driver		= {
 | 
				
			||||||
		.name	= "msm_ssbi",
 | 
							.name	= "msm_ssbi",
 | 
				
			||||||
		.owner	= THIS_MODULE,
 | 
							.owner	= THIS_MODULE,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue