All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: video: omap2: dss: Use PTR_RET function
@ 2013-03-19  8:03 Alexandru Gheorghiu
  2013-03-20 11:56   ` Tomi Valkeinen
  0 siblings, 1 reply; 11+ messages in thread
From: Alexandru Gheorghiu @ 2013-03-19  8:03 UTC (permalink / raw)
  To: Tomi Valkeinen
  Cc: Florian Tobias Schandinat, Sumit Semwal, linux-omap,
	linux-kernel, Alexandru Gheorghiu

Use PTR_RET function instead of IS_ERR and PTR_ERR.
Patch found using coccinelle.

Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
---
 drivers/video/omap2/dss/core.c |    5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
index f8779d4..60cc6fe 100644
--- a/drivers/video/omap2/dss/core.c
+++ b/drivers/video/omap2/dss/core.c
@@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
 	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
 			write, &dss_debug_fops);
 
-	if (IS_ERR(d))
-		return PTR_ERR(d);
-
-	return 0;
+	return PTR_RET(d);
 }
 #else /* CONFIG_OMAP2_DSS_DEBUGFS */
 static inline int dss_initialize_debugfs(void)
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
  2013-03-19  8:03 [PATCH] drivers: video: omap2: dss: Use PTR_RET function Alexandru Gheorghiu
@ 2013-03-20 11:56   ` Tomi Valkeinen
  0 siblings, 0 replies; 11+ messages in thread
From: Tomi Valkeinen @ 2013-03-20 11:56 UTC (permalink / raw)
  To: Alexandru Gheorghiu; +Cc: Florian Tobias Schandinat, linux-omap, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 954 bytes --]

On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
> Use PTR_RET function instead of IS_ERR and PTR_ERR.
> Patch found using coccinelle.
> 
> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
> ---
>  drivers/video/omap2/dss/core.c |    5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
> index f8779d4..60cc6fe 100644
> --- a/drivers/video/omap2/dss/core.c
> +++ b/drivers/video/omap2/dss/core.c
> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>  			write, &dss_debug_fops);
>  
> -	if (IS_ERR(d))
> -		return PTR_ERR(d);
> -
> -	return 0;
> +	return PTR_RET(d);
>  }
>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>  static inline int dss_initialize_debugfs(void)
> 

Thanks. I'll apply to omapdss tree.

 Tomi



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 899 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
@ 2013-03-20 11:56   ` Tomi Valkeinen
  0 siblings, 0 replies; 11+ messages in thread
From: Tomi Valkeinen @ 2013-03-20 11:56 UTC (permalink / raw)
  To: Alexandru Gheorghiu; +Cc: Florian Tobias Schandinat, linux-omap, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 954 bytes --]

On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
> Use PTR_RET function instead of IS_ERR and PTR_ERR.
> Patch found using coccinelle.
> 
> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
> ---
>  drivers/video/omap2/dss/core.c |    5 +----
>  1 file changed, 1 insertion(+), 4 deletions(-)
> 
> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
> index f8779d4..60cc6fe 100644
> --- a/drivers/video/omap2/dss/core.c
> +++ b/drivers/video/omap2/dss/core.c
> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>  			write, &dss_debug_fops);
>  
> -	if (IS_ERR(d))
> -		return PTR_ERR(d);
> -
> -	return 0;
> +	return PTR_RET(d);
>  }
>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>  static inline int dss_initialize_debugfs(void)
> 

Thanks. I'll apply to omapdss tree.

 Tomi



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 899 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
  2013-03-20 11:56   ` Tomi Valkeinen
@ 2013-03-20 15:44     ` Jon Hunter
  -1 siblings, 0 replies; 11+ messages in thread
From: Jon Hunter @ 2013-03-20 15:44 UTC (permalink / raw)
  To: Tomi Valkeinen
  Cc: Alexandru Gheorghiu, Florian Tobias Schandinat, linux-omap, linux-kernel


On 03/20/2013 06:56 AM, Tomi Valkeinen wrote:
> On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
>> Use PTR_RET function instead of IS_ERR and PTR_ERR.
>> Patch found using coccinelle.
>>
>> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
>> ---
>>  drivers/video/omap2/dss/core.c |    5 +----
>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>
>> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
>> index f8779d4..60cc6fe 100644
>> --- a/drivers/video/omap2/dss/core.c
>> +++ b/drivers/video/omap2/dss/core.c
>> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>>  			write, &dss_debug_fops);
>>  
>> -	if (IS_ERR(d))
>> -		return PTR_ERR(d);
>> -
>> -	return 0;
>> +	return PTR_RET(d);
>>  }
>>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>>  static inline int dss_initialize_debugfs(void)
>>
> 
> Thanks. I'll apply to omapdss tree.

Is this correct? If debugfs_create_file() returns a valid pointer, then
now dss_debugfs_create_file() will return a non-zero value on success. I
don't think this is what you want. A similar case came up recently here [1].

Jon

[1] http://comments.gmane.org/gmane.linux.kernel/1455141

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
@ 2013-03-20 15:44     ` Jon Hunter
  0 siblings, 0 replies; 11+ messages in thread
From: Jon Hunter @ 2013-03-20 15:44 UTC (permalink / raw)
  To: Tomi Valkeinen
  Cc: Alexandru Gheorghiu, Florian Tobias Schandinat, linux-omap, linux-kernel


On 03/20/2013 06:56 AM, Tomi Valkeinen wrote:
> On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
>> Use PTR_RET function instead of IS_ERR and PTR_ERR.
>> Patch found using coccinelle.
>>
>> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
>> ---
>>  drivers/video/omap2/dss/core.c |    5 +----
>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>
>> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
>> index f8779d4..60cc6fe 100644
>> --- a/drivers/video/omap2/dss/core.c
>> +++ b/drivers/video/omap2/dss/core.c
>> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>>  			write, &dss_debug_fops);
>>  
>> -	if (IS_ERR(d))
>> -		return PTR_ERR(d);
>> -
>> -	return 0;
>> +	return PTR_RET(d);
>>  }
>>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>>  static inline int dss_initialize_debugfs(void)
>>
> 
> Thanks. I'll apply to omapdss tree.

Is this correct? If debugfs_create_file() returns a valid pointer, then
now dss_debugfs_create_file() will return a non-zero value on success. I
don't think this is what you want. A similar case came up recently here [1].

Jon

[1] http://comments.gmane.org/gmane.linux.kernel/1455141

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
  2013-03-20 15:44     ` Jon Hunter
@ 2013-03-20 16:59       ` Tomi Valkeinen
  -1 siblings, 0 replies; 11+ messages in thread
From: Tomi Valkeinen @ 2013-03-20 16:59 UTC (permalink / raw)
  To: Jon Hunter
  Cc: Alexandru Gheorghiu, Florian Tobias Schandinat, linux-omap, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1562 bytes --]

On 2013-03-20 17:44, Jon Hunter wrote:
> 
> On 03/20/2013 06:56 AM, Tomi Valkeinen wrote:
>> On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
>>> Use PTR_RET function instead of IS_ERR and PTR_ERR.
>>> Patch found using coccinelle.
>>>
>>> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
>>> ---
>>>  drivers/video/omap2/dss/core.c |    5 +----
>>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>>
>>> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
>>> index f8779d4..60cc6fe 100644
>>> --- a/drivers/video/omap2/dss/core.c
>>> +++ b/drivers/video/omap2/dss/core.c
>>> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>>>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>>>  			write, &dss_debug_fops);
>>>  
>>> -	if (IS_ERR(d))
>>> -		return PTR_ERR(d);
>>> -
>>> -	return 0;
>>> +	return PTR_RET(d);
>>>  }
>>>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>>>  static inline int dss_initialize_debugfs(void)
>>>
>>
>> Thanks. I'll apply to omapdss tree.
> 
> Is this correct? If debugfs_create_file() returns a valid pointer, then
> now dss_debugfs_create_file() will return a non-zero value on success. I
> don't think this is what you want. A similar case came up recently here [1].

Hmm. I don't follow. And I don't understand the post where you referred.

PTR_RET is defined as:

if (IS_ERR(ptr))
        return PTR_ERR(ptr);
else
        return 0;

How's that different from the original code?

 Tomi



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 899 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
@ 2013-03-20 16:59       ` Tomi Valkeinen
  0 siblings, 0 replies; 11+ messages in thread
From: Tomi Valkeinen @ 2013-03-20 16:59 UTC (permalink / raw)
  To: Jon Hunter
  Cc: Alexandru Gheorghiu, Florian Tobias Schandinat, linux-omap, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1562 bytes --]

On 2013-03-20 17:44, Jon Hunter wrote:
> 
> On 03/20/2013 06:56 AM, Tomi Valkeinen wrote:
>> On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
>>> Use PTR_RET function instead of IS_ERR and PTR_ERR.
>>> Patch found using coccinelle.
>>>
>>> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
>>> ---
>>>  drivers/video/omap2/dss/core.c |    5 +----
>>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>>
>>> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
>>> index f8779d4..60cc6fe 100644
>>> --- a/drivers/video/omap2/dss/core.c
>>> +++ b/drivers/video/omap2/dss/core.c
>>> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>>>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>>>  			write, &dss_debug_fops);
>>>  
>>> -	if (IS_ERR(d))
>>> -		return PTR_ERR(d);
>>> -
>>> -	return 0;
>>> +	return PTR_RET(d);
>>>  }
>>>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>>>  static inline int dss_initialize_debugfs(void)
>>>
>>
>> Thanks. I'll apply to omapdss tree.
> 
> Is this correct? If debugfs_create_file() returns a valid pointer, then
> now dss_debugfs_create_file() will return a non-zero value on success. I
> don't think this is what you want. A similar case came up recently here [1].

Hmm. I don't follow. And I don't understand the post where you referred.

PTR_RET is defined as:

if (IS_ERR(ptr))
        return PTR_ERR(ptr);
else
        return 0;

How's that different from the original code?

 Tomi



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 899 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
  2013-03-20 16:59       ` Tomi Valkeinen
@ 2013-03-20 18:02         ` Jon Hunter
  -1 siblings, 0 replies; 11+ messages in thread
From: Jon Hunter @ 2013-03-20 18:02 UTC (permalink / raw)
  To: Tomi Valkeinen
  Cc: Alexandru Gheorghiu, Florian Tobias Schandinat, linux-omap, linux-kernel


On 03/20/2013 11:59 AM, Tomi Valkeinen wrote:
> On 2013-03-20 17:44, Jon Hunter wrote:
>>
>> On 03/20/2013 06:56 AM, Tomi Valkeinen wrote:
>>> On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
>>>> Use PTR_RET function instead of IS_ERR and PTR_ERR.
>>>> Patch found using coccinelle.
>>>>
>>>> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
>>>> ---
>>>>  drivers/video/omap2/dss/core.c |    5 +----
>>>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>>>
>>>> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
>>>> index f8779d4..60cc6fe 100644
>>>> --- a/drivers/video/omap2/dss/core.c
>>>> +++ b/drivers/video/omap2/dss/core.c
>>>> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>>>>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>>>>  			write, &dss_debug_fops);
>>>>  
>>>> -	if (IS_ERR(d))
>>>> -		return PTR_ERR(d);
>>>> -
>>>> -	return 0;
>>>> +	return PTR_RET(d);
>>>>  }
>>>>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>>>>  static inline int dss_initialize_debugfs(void)
>>>>
>>>
>>> Thanks. I'll apply to omapdss tree.
>>
>> Is this correct? If debugfs_create_file() returns a valid pointer, then
>> now dss_debugfs_create_file() will return a non-zero value on success. I
>> don't think this is what you want. A similar case came up recently here [1].
> 
> Hmm. I don't follow. And I don't understand the post where you referred.
> 
> PTR_RET is defined as:
> 
> if (IS_ERR(ptr))
>         return PTR_ERR(ptr);
> else
>         return 0;
> 
> How's that different from the original code?

Oops sorry, I missed that you were returning PTR_RET() and not
PTR_ERR(). Yes that looks fine. Sorry for the noise!

Jon

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
@ 2013-03-20 18:02         ` Jon Hunter
  0 siblings, 0 replies; 11+ messages in thread
From: Jon Hunter @ 2013-03-20 18:02 UTC (permalink / raw)
  To: Tomi Valkeinen
  Cc: Alexandru Gheorghiu, Florian Tobias Schandinat, linux-omap, linux-kernel


On 03/20/2013 11:59 AM, Tomi Valkeinen wrote:
> On 2013-03-20 17:44, Jon Hunter wrote:
>>
>> On 03/20/2013 06:56 AM, Tomi Valkeinen wrote:
>>> On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
>>>> Use PTR_RET function instead of IS_ERR and PTR_ERR.
>>>> Patch found using coccinelle.
>>>>
>>>> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
>>>> ---
>>>>  drivers/video/omap2/dss/core.c |    5 +----
>>>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>>>
>>>> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
>>>> index f8779d4..60cc6fe 100644
>>>> --- a/drivers/video/omap2/dss/core.c
>>>> +++ b/drivers/video/omap2/dss/core.c
>>>> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>>>>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>>>>  			write, &dss_debug_fops);
>>>>  
>>>> -	if (IS_ERR(d))
>>>> -		return PTR_ERR(d);
>>>> -
>>>> -	return 0;
>>>> +	return PTR_RET(d);
>>>>  }
>>>>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>>>>  static inline int dss_initialize_debugfs(void)
>>>>
>>>
>>> Thanks. I'll apply to omapdss tree.
>>
>> Is this correct? If debugfs_create_file() returns a valid pointer, then
>> now dss_debugfs_create_file() will return a non-zero value on success. I
>> don't think this is what you want. A similar case came up recently here [1].
> 
> Hmm. I don't follow. And I don't understand the post where you referred.
> 
> PTR_RET is defined as:
> 
> if (IS_ERR(ptr))
>         return PTR_ERR(ptr);
> else
>         return 0;
> 
> How's that different from the original code?

Oops sorry, I missed that you were returning PTR_RET() and not
PTR_ERR(). Yes that looks fine. Sorry for the noise!

Jon

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
  2013-03-20 18:02         ` Jon Hunter
@ 2013-03-20 18:08           ` Jon Hunter
  -1 siblings, 0 replies; 11+ messages in thread
From: Jon Hunter @ 2013-03-20 18:08 UTC (permalink / raw)
  To: Tomi Valkeinen
  Cc: Alexandru Gheorghiu, Florian Tobias Schandinat, linux-omap, linux-kernel


On 03/20/2013 01:02 PM, Jon Hunter wrote:
> 
> On 03/20/2013 11:59 AM, Tomi Valkeinen wrote:
>> On 2013-03-20 17:44, Jon Hunter wrote:
>>>
>>> On 03/20/2013 06:56 AM, Tomi Valkeinen wrote:
>>>> On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
>>>>> Use PTR_RET function instead of IS_ERR and PTR_ERR.
>>>>> Patch found using coccinelle.
>>>>>
>>>>> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
>>>>> ---
>>>>>  drivers/video/omap2/dss/core.c |    5 +----
>>>>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>>>>
>>>>> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
>>>>> index f8779d4..60cc6fe 100644
>>>>> --- a/drivers/video/omap2/dss/core.c
>>>>> +++ b/drivers/video/omap2/dss/core.c
>>>>> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>>>>>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>>>>>  			write, &dss_debug_fops);
>>>>>  
>>>>> -	if (IS_ERR(d))
>>>>> -		return PTR_ERR(d);
>>>>> -
>>>>> -	return 0;
>>>>> +	return PTR_RET(d);
>>>>>  }
>>>>>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>>>>>  static inline int dss_initialize_debugfs(void)
>>>>>
>>>>
>>>> Thanks. I'll apply to omapdss tree.
>>>
>>> Is this correct? If debugfs_create_file() returns a valid pointer, then
>>> now dss_debugfs_create_file() will return a non-zero value on success. I
>>> don't think this is what you want. A similar case came up recently here [1].
>>
>> Hmm. I don't follow. And I don't understand the post where you referred.

Yes looking at Russell's response I am not sure I following now as it is
also using PTR_RET() and not PTR_ERR(). My eyes deceived me on this one.

Jon

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH] drivers: video: omap2: dss: Use PTR_RET function
@ 2013-03-20 18:08           ` Jon Hunter
  0 siblings, 0 replies; 11+ messages in thread
From: Jon Hunter @ 2013-03-20 18:08 UTC (permalink / raw)
  To: Tomi Valkeinen
  Cc: Alexandru Gheorghiu, Florian Tobias Schandinat, linux-omap, linux-kernel


On 03/20/2013 01:02 PM, Jon Hunter wrote:
> 
> On 03/20/2013 11:59 AM, Tomi Valkeinen wrote:
>> On 2013-03-20 17:44, Jon Hunter wrote:
>>>
>>> On 03/20/2013 06:56 AM, Tomi Valkeinen wrote:
>>>> On 2013-03-19 10:03, Alexandru Gheorghiu wrote:
>>>>> Use PTR_RET function instead of IS_ERR and PTR_ERR.
>>>>> Patch found using coccinelle.
>>>>>
>>>>> Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com>
>>>>> ---
>>>>>  drivers/video/omap2/dss/core.c |    5 +----
>>>>>  1 file changed, 1 insertion(+), 4 deletions(-)
>>>>>
>>>>> diff --git a/drivers/video/omap2/dss/core.c b/drivers/video/omap2/dss/core.c
>>>>> index f8779d4..60cc6fe 100644
>>>>> --- a/drivers/video/omap2/dss/core.c
>>>>> +++ b/drivers/video/omap2/dss/core.c
>>>>> @@ -181,10 +181,7 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
>>>>>  	d = debugfs_create_file(name, S_IRUGO, dss_debugfs_dir,
>>>>>  			write, &dss_debug_fops);
>>>>>  
>>>>> -	if (IS_ERR(d))
>>>>> -		return PTR_ERR(d);
>>>>> -
>>>>> -	return 0;
>>>>> +	return PTR_RET(d);
>>>>>  }
>>>>>  #else /* CONFIG_OMAP2_DSS_DEBUGFS */
>>>>>  static inline int dss_initialize_debugfs(void)
>>>>>
>>>>
>>>> Thanks. I'll apply to omapdss tree.
>>>
>>> Is this correct? If debugfs_create_file() returns a valid pointer, then
>>> now dss_debugfs_create_file() will return a non-zero value on success. I
>>> don't think this is what you want. A similar case came up recently here [1].
>>
>> Hmm. I don't follow. And I don't understand the post where you referred.

Yes looking at Russell's response I am not sure I following now as it is
also using PTR_RET() and not PTR_ERR(). My eyes deceived me on this one.

Jon

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-03-20 18:08 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-19  8:03 [PATCH] drivers: video: omap2: dss: Use PTR_RET function Alexandru Gheorghiu
2013-03-20 11:56 ` Tomi Valkeinen
2013-03-20 11:56   ` Tomi Valkeinen
2013-03-20 15:44   ` Jon Hunter
2013-03-20 15:44     ` Jon Hunter
2013-03-20 16:59     ` Tomi Valkeinen
2013-03-20 16:59       ` Tomi Valkeinen
2013-03-20 18:02       ` Jon Hunter
2013-03-20 18:02         ` Jon Hunter
2013-03-20 18:08         ` Jon Hunter
2013-03-20 18:08           ` Jon Hunter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.