diff mbox series

[net-next] ptp: clockmatrix: remove unnecessary comparison

Message ID 1587716058-1840-1-git-send-email-yangyingliang@huawei.com
State Changes Requested
Delegated to: David Miller
Headers show
Series [net-next] ptp: clockmatrix: remove unnecessary comparison | expand

Commit Message

Yang Yingliang April 24, 2020, 8:14 a.m. UTC
The type of loaddr is u8 which is always '<=' 0xff, so the
loaddr <= 0xff is always true, we can remove this comparison.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 drivers/ptp/ptp_clockmatrix.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Sergei Shtylyov April 24, 2020, 10:12 a.m. UTC | #1
Hello!

On 24.04.2020 11:14, Yang Yingliang wrote:

> The type of loaddr is u8 which is always '<=' 0xff, so the
> loaddr <= 0xff is always true, we can remove this comparison.
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> ---
>   drivers/ptp/ptp_clockmatrix.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/ptp/ptp_clockmatrix.c b/drivers/ptp/ptp_clockmatrix.c
> index 032e112..56aee4f 100644
> --- a/drivers/ptp/ptp_clockmatrix.c
> +++ b/drivers/ptp/ptp_clockmatrix.c
> @@ -780,7 +780,7 @@ static int idtcm_load_firmware(struct idtcm *idtcm,
>   
>   			/* Page size 128, last 4 bytes of page skipped */
>   			if (((loaddr > 0x7b) && (loaddr <= 0x7f))
> -			     || ((loaddr > 0xfb) && (loaddr <= 0xff)))
> +			     || loaddr <= 0xff)

    Haven't you just said that this is always true? :-)

[...]

MBR, Sergei
Yang Yingliang April 24, 2020, 12:24 p.m. UTC | #2
On 2020/4/24 18:12, Sergei Shtylyov wrote:
> Hello!
>
> On 24.04.2020 11:14, Yang Yingliang wrote:
>
>> The type of loaddr is u8 which is always '<=' 0xff, so the
>> loaddr <= 0xff is always true, we can remove this comparison.
>>
>> Reported-by: Hulk Robot <hulkci@huawei.com>
>> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
>> ---
>>   drivers/ptp/ptp_clockmatrix.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/ptp/ptp_clockmatrix.c 
>> b/drivers/ptp/ptp_clockmatrix.c
>> index 032e112..56aee4f 100644
>> --- a/drivers/ptp/ptp_clockmatrix.c
>> +++ b/drivers/ptp/ptp_clockmatrix.c
>> @@ -780,7 +780,7 @@ static int idtcm_load_firmware(struct idtcm *idtcm,
>>                 /* Page size 128, last 4 bytes of page skipped */
>>               if (((loaddr > 0x7b) && (loaddr <= 0x7f))
>> -                 || ((loaddr > 0xfb) && (loaddr <= 0xff)))
>> +                 || loaddr <= 0xff)
>
>    Haven't you just said that this is always true? :-)

My bad, I sent the patch.

>
> [...]
>
> MBR, Sergei
diff mbox series

Patch

diff --git a/drivers/ptp/ptp_clockmatrix.c b/drivers/ptp/ptp_clockmatrix.c
index 032e112..56aee4f 100644
--- a/drivers/ptp/ptp_clockmatrix.c
+++ b/drivers/ptp/ptp_clockmatrix.c
@@ -780,7 +780,7 @@  static int idtcm_load_firmware(struct idtcm *idtcm,
 
 			/* Page size 128, last 4 bytes of page skipped */
 			if (((loaddr > 0x7b) && (loaddr <= 0x7f))
-			     || ((loaddr > 0xfb) && (loaddr <= 0xff)))
+			     || loaddr <= 0xff)
 				continue;
 
 			err = idtcm_write(idtcm, regaddr, 0, &val, sizeof(val));