clocksource: sh_cmt: Remove unnecessary OOM messages
The site-specific OOM messages are unnecessary, because they duplicate the MM subsystem generic OOM message. [dlezcano] : refreshed against latest modifications: kmalloc -> kzalloc Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
This commit is contained in:
		
					parent
					
						
							
								39dd56776e
							
						
					
				
			
			
				commit
				
					
						0178f41d3d
					
				
			
		
					 1 changed files with 1 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -1106,10 +1106,8 @@ static int sh_cmt_probe(struct platform_device *pdev)
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	cmt = kzalloc(sizeof(*cmt), GFP_KERNEL);
 | 
			
		||||
	if (cmt == NULL) {
 | 
			
		||||
		dev_err(&pdev->dev, "failed to allocate driver data\n");
 | 
			
		||||
	if (cmt == NULL)
 | 
			
		||||
		return -ENOMEM;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	ret = sh_cmt_setup(cmt, pdev);
 | 
			
		||||
	if (ret) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue