[PATCH 03/20] ARM: pxa: ssp: add shortcut for &pdev->dev

Daniel Mack zonque at gmail.com
Thu Aug 8 04:20:57 EDT 2013


On 08.08.2013 09:52, Artem Bityutskiy wrote:
> On Thu, 2013-08-08 at 00:32 -0700, Brian Norris wrote:
>> On Wed, Aug 07, 2013 at 05:33:52PM +0200, Daniel Mack wrote:
>>> No functional change, just a cosmetic cleanup.
>>>
>>> Signed-off-by: Daniel Mack <zonque at gmail.com>
>>> ---
>>> --- a/arch/arm/plat-pxa/ssp.c
>>> +++ b/arch/arm/plat-pxa/ssp.c
>>> @@ -77,16 +77,17 @@ static int pxa_ssp_probe(struct platform_device *pdev)
>>>  	const struct platform_device_id *id = platform_get_device_id(pdev);
>>>  	struct resource *res;
>>>  	struct ssp_device *ssp;
>>> +	struct device *dev = &pdev->dev;
>>>  	int ret = 0;
>>>  
>>>  	ssp = kzalloc(sizeof(struct ssp_device), GFP_KERNEL);
>>>  	if (ssp == NULL) {
>>> -		dev_err(&pdev->dev, "failed to allocate memory");
>>> +		dev_err(dev, "failed to allocate memory");
>>
>> Two options here: either remove the message entirely (I believe kzalloc
>> will complain loudly if the allocation fails) or at least add a newline
>> at the end of it!
> 
> I think only to former is the right option.
> 

Ok, I've added a patch for this to my series.


Thanks!

Daniel



More information about the linux-arm-kernel mailing list