public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] char:agp:amd64-agp - Change 1 to true for bool type
@ 2015-05-25 19:18 Shailendra Verma
  2015-05-25 19:24 ` Richard Weinberger
  0 siblings, 1 reply; 4+ messages in thread
From: Shailendra Verma @ 2015-05-25 19:18 UTC (permalink / raw)
  To: David Airlie; +Cc: linux-kernel, Shailendra Verma

The variable agp_try_unsupported is bool type.Hence initializing
with true instead of 1. Also fixing the below checkpatch warning.

WARNING: __initdata should be placed after agp_try_unsupported
FILE: drivers/char/agp/amd64-agp.c:36:
static bool __initdata agp_try_unsupported = true;

Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>
---
 drivers/char/agp/amd64-agp.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c
index 0ef3500..14900ea 100644
--- a/drivers/char/agp/amd64-agp.c
+++ b/drivers/char/agp/amd64-agp.c
@@ -33,7 +33,7 @@
 #define ULI_X86_64_ENU_SCR_REG		0x54
 
 static struct resource *aperture_resource;
-static bool __initdata agp_try_unsupported = 1;
+static bool agp_try_unsupported __initdata = true;
 static int agp_bridges_found;
 
 static void amd64_tlbflush(struct agp_memory *temp)
-- 
1.7.9.5


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

* Re: [PATCH] char:agp:amd64-agp - Change 1 to true for bool type
  2015-05-25 19:18 [PATCH] char:agp:amd64-agp - Change 1 to true for bool type Shailendra Verma
@ 2015-05-25 19:24 ` Richard Weinberger
       [not found]   ` <CA+tKcn-jTHbzk2FGhfxQA6wGQqY+JWRS6S4+BJmWhkwt3ppWqQ@mail.gmail.com>
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Weinberger @ 2015-05-25 19:24 UTC (permalink / raw)
  To: Shailendra Verma; +Cc: David Airlie, LKML

On Mon, May 25, 2015 at 9:18 PM, Shailendra Verma
<shailendra.capricorn@gmail.com> wrote:
> The variable agp_try_unsupported is bool type.Hence initializing
> with true instead of 1. Also fixing the below checkpatch warning.

Please one logical change per patch.

> WARNING: __initdata should be placed after agp_try_unsupported
> FILE: drivers/char/agp/amd64-agp.c:36:
> static bool __initdata agp_try_unsupported = true;
>
> Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>
> ---
>  drivers/char/agp/amd64-agp.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c
> index 0ef3500..14900ea 100644
> --- a/drivers/char/agp/amd64-agp.c
> +++ b/drivers/char/agp/amd64-agp.c
> @@ -33,7 +33,7 @@
>  #define ULI_X86_64_ENU_SCR_REG         0x54
>
>  static struct resource *aperture_resource;
> -static bool __initdata agp_try_unsupported = 1;
> +static bool agp_try_unsupported __initdata = true;

What issue does this fix? IOW why is assigning 1 wrong?

>  static int agp_bridges_found;

-- 
Thanks,
//richard

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

* Re: [PATCH] char:agp:amd64-agp - Change 1 to true for bool type
       [not found]   ` <CA+tKcn-jTHbzk2FGhfxQA6wGQqY+JWRS6S4+BJmWhkwt3ppWqQ@mail.gmail.com>
@ 2015-05-25 21:22     ` Richard Weinberger
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Weinberger @ 2015-05-25 21:22 UTC (permalink / raw)
  To: Shailendra Verma; +Cc: David Airlie, linux-kernel@vger.kernel.org

Am 25.05.2015 um 23:14 schrieb Shailendra Verma:
> Hello Richard,
> 
> I will separate both the changes and will send the patches to you.
> 
> What issue does this fix? IOW why is assigning 1 wrong?
> 
>>>>> Yes, you are correct. There will be no issue in assigning 1 to the variable. But according to coding guidelines we should only use true/false for bool type variables.

Really? I don't see this in Documentation/CodingStyle and checkpatch.pl does not bark either.
IMHO it is a matter of taste. But the individual maintainer has to decide. :-)

Thanks,
//richard

P.s: Please don't crop the list of CC when replying.

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

* [PATCH] char:agp:amd64-agp - Change 1 to true for bool type
@ 2015-05-27  1:41 Shailendra Verma
  0 siblings, 0 replies; 4+ messages in thread
From: Shailendra Verma @ 2015-05-27  1:41 UTC (permalink / raw)
  To: David Airlie; +Cc: linux-kernel, Shailendra Verma

The variable agp_try_unsupported is bool type.Hence initializing with
bool value true instead of 1.

Signed-off-by: Shailendra Verma <shailendra.capricorn@gmail.com>
---
 drivers/char/agp/amd64-agp.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c
index 0ef3500..6b6af5a 100644
--- a/drivers/char/agp/amd64-agp.c
+++ b/drivers/char/agp/amd64-agp.c
@@ -33,7 +33,7 @@
 #define ULI_X86_64_ENU_SCR_REG		0x54
 
 static struct resource *aperture_resource;
-static bool __initdata agp_try_unsupported = 1;
+static bool __initdata agp_try_unsupported = true;
 static int agp_bridges_found;
 
 static void amd64_tlbflush(struct agp_memory *temp)
-- 
1.7.9.5


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

end of thread, other threads:[~2015-05-27  1:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-25 19:18 [PATCH] char:agp:amd64-agp - Change 1 to true for bool type Shailendra Verma
2015-05-25 19:24 ` Richard Weinberger
     [not found]   ` <CA+tKcn-jTHbzk2FGhfxQA6wGQqY+JWRS6S4+BJmWhkwt3ppWqQ@mail.gmail.com>
2015-05-25 21:22     ` Richard Weinberger
  -- strict thread matches above, loose matches on Subject: below --
2015-05-27  1:41 Shailendra Verma

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox