public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Enable A20 gate
@ 2013-05-07  8:41 Syed Salman Mansoor
  2013-05-07 11:20 ` Ingo Molnar
  0 siblings, 1 reply; 4+ messages in thread
From: Syed Salman Mansoor @ 2013-05-07  8:41 UTC (permalink / raw)
  To: hpa, tglx, mingo; +Cc: x86, linux-kernel, Syed Salman Mansoor

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

>From a5e4cd6cb1956d288b5a001f60699dc8b5528963 Mon Sep 17 00:00:00 2001
From: Syed Salman Mansoor <syed.salman.mansoor@gmail.com>
Date: Tue, 7 May 2013 12:49:24 +0500
Subject: [PATCH] Enable A20 gate
 This is a patch to the a20.c file that fixes following
warnings/errors found by the checkpatch.pl tool
 i)  WARNING: please, no spaces at the start of a line
 ii) WARNING: suspect code indent for conditional statements
 iii) ERROR: trailing whitespace
Signed-off-by: Syed Salman Mansoor <syed.salman.mansoor@gmail.com>

---
 arch/x86/boot/a20.c |   46 +++++++++++++++++++++++-----------------------
 1 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/arch/x86/boot/a20.c b/arch/x86/boot/a20.c
index 64a31a6..911d729 100644
--- a/arch/x86/boot/a20.c
+++ b/arch/x86/boot/a20.c
@@ -129,37 +129,37 @@ static void enable_a20_fast(void)

 int enable_a20(void)
 {
-       int loops = A20_ENABLE_LOOPS;
-       int kbc_err;
+ int loops = A20_ENABLE_LOOPS;
+ int kbc_err;

-       while (loops--) {
-       /* First, check to see if A20 is already enabled
+ while (loops--) {
+ /* First, check to see if A20 is already enabled
   (legacy free, etc.) */
-       if (a20_test_short())
-       return 0;
-
+ if (a20_test_short())
+ return 0;
+
        /* Next, try the BIOS (INT 0x15, AX=0x2401) */
        enable_a20_bios();
-       if (a20_test_short())
-       return 0;
-
+ if (a20_test_short())
+ return 0;
+
        /* Try enabling A20 through the keyboard controller */
        kbc_err = empty_8042();

-       if (a20_test_short())
-       return 0; /* BIOS worked, but with delayed reaction */
-
-       if (!kbc_err) {
-       enable_a20_kbc();
-       if (a20_test_long())
-       return 0;
+ if (a20_test_short())
+ return 0; /* BIOS worked, but with delayed reaction */
+
+ if (!kbc_err) {
+ enable_a20_kbc();
+ if (a20_test_long())
+ return 0;
        }
-
+
        /* Finally, try enabling the "fast A20 gate" */
        enable_a20_fast();
-       if (a20_test_long())
-       return 0;
-       }
-
-       return -1;
+ if (a20_test_long())
+ return 0;
+ }
+
+ return -1;
 }
--
1.7.2.5

[-- Attachment #2: 0001-Enable-A20-gate.patch --]
[-- Type: application/octet-stream, Size: 2191 bytes --]

From a5e4cd6cb1956d288b5a001f60699dc8b5528963 Mon Sep 17 00:00:00 2001
From: Syed Salman Mansoor <syed.salman.mansoor@gmail.com>
Date: Tue, 7 May 2013 12:49:24 +0500
Subject: [PATCH] Enable A20 gate
 This is a patch to the a20.c file that fixes following warnings/errors found by the checkpatch.pl tool
 i)  WARNING: please, no spaces at the start of a line
 ii) WARNING: suspect code indent for conditional statements
 iii) ERROR: trailing whitespace
Signed-off-by: Syed Salman Mansoor <syed.salman.mansoor@gmail.com>

---
 arch/x86/boot/a20.c |   46 +++++++++++++++++++++++-----------------------
 1 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/arch/x86/boot/a20.c b/arch/x86/boot/a20.c
index 64a31a6..911d729 100644
--- a/arch/x86/boot/a20.c
+++ b/arch/x86/boot/a20.c
@@ -129,37 +129,37 @@ static void enable_a20_fast(void)
 
 int enable_a20(void)
 {
-       int loops = A20_ENABLE_LOOPS;
-       int kbc_err;
+	int loops = A20_ENABLE_LOOPS;
+	int kbc_err;
 
-       while (loops--) {
-	       /* First, check to see if A20 is already enabled
+	while (loops--) {
+		/* First, check to see if A20 is already enabled
 		  (legacy free, etc.) */
-	       if (a20_test_short())
-		       return 0;
-	       
+		if (a20_test_short())
+			return 0;
+
 	       /* Next, try the BIOS (INT 0x15, AX=0x2401) */
 	       enable_a20_bios();
-	       if (a20_test_short())
-		       return 0;
-	       
+		if (a20_test_short())
+			return 0;
+
 	       /* Try enabling A20 through the keyboard controller */
 	       kbc_err = empty_8042();
 
-	       if (a20_test_short())
-		       return 0; /* BIOS worked, but with delayed reaction */
-	
-	       if (!kbc_err) {
-		       enable_a20_kbc();
-		       if (a20_test_long())
-			       return 0;
+		if (a20_test_short())
+			return 0; /* BIOS worked, but with delayed reaction */
+
+		if (!kbc_err) {
+			enable_a20_kbc();
+			if (a20_test_long())
+				return 0;
 	       }
-	       
+
 	       /* Finally, try enabling the "fast A20 gate" */
 	       enable_a20_fast();
-	       if (a20_test_long())
-		       return 0;
-       }
-       
-       return -1;
+		if (a20_test_long())
+			return 0;
+	}
+
+	return -1;
 }
-- 
1.7.2.5


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

* Re: [PATCH] Enable A20 gate
  2013-05-07  8:41 [PATCH] Enable A20 gate Syed Salman Mansoor
@ 2013-05-07 11:20 ` Ingo Molnar
  2013-05-07 11:54   ` Syed Salman Mansoor
  0 siblings, 1 reply; 4+ messages in thread
From: Ingo Molnar @ 2013-05-07 11:20 UTC (permalink / raw)
  To: Syed Salman Mansoor; +Cc: hpa, tglx, mingo, x86, linux-kernel


* Syed Salman Mansoor <syed.salman.mansoor@gmail.com> wrote:

> From a5e4cd6cb1956d288b5a001f60699dc8b5528963 Mon Sep 17 00:00:00 2001
> From: Syed Salman Mansoor <syed.salman.mansoor@gmail.com>
> Date: Tue, 7 May 2013 12:49:24 +0500
> Subject: [PATCH] Enable A20 gate
>  This is a patch to the a20.c file that fixes following
> warnings/errors found by the checkpatch.pl tool
>  i)  WARNING: please, no spaces at the start of a line
>  ii) WARNING: suspect code indent for conditional statements
>  iii) ERROR: trailing whitespace
> Signed-off-by: Syed Salman Mansoor <syed.salman.mansoor@gmail.com>
> 
> ---
>  arch/x86/boot/a20.c |   46 +++++++++++++++++++++++-----------------------
>  1 files changed, 23 insertions(+), 23 deletions(-)
> 
> diff --git a/arch/x86/boot/a20.c b/arch/x86/boot/a20.c
> index 64a31a6..911d729 100644
> --- a/arch/x86/boot/a20.c
> +++ b/arch/x86/boot/a20.c
> @@ -129,37 +129,37 @@ static void enable_a20_fast(void)
> 
>  int enable_a20(void)
>  {
> -       int loops = A20_ENABLE_LOOPS;
> -       int kbc_err;
> + int loops = A20_ENABLE_LOOPS;
> + int kbc_err;
> 
> -       while (loops--) {
> -       /* First, check to see if A20 is already enabled
> + while (loops--) {
> + /* First, check to see if A20 is already enabled
>    (legacy free, etc.) */
> -       if (a20_test_short())
> -       return 0;
> -
> + if (a20_test_short())
> + return 0;
> +
>         /* Next, try the BIOS (INT 0x15, AX=0x2401) */
>         enable_a20_bios();
> -       if (a20_test_short())
> -       return 0;
> -
> + if (a20_test_short())
> + return 0;
> +
>         /* Try enabling A20 through the keyboard controller */
>         kbc_err = empty_8042();
> 
> -       if (a20_test_short())
> -       return 0; /* BIOS worked, but with delayed reaction */
> -
> -       if (!kbc_err) {
> -       enable_a20_kbc();
> -       if (a20_test_long())
> -       return 0;
> + if (a20_test_short())
> + return 0; /* BIOS worked, but with delayed reaction */
> +
> + if (!kbc_err) {
> + enable_a20_kbc();
> + if (a20_test_long())
> + return 0;
>         }
> -
> +
>         /* Finally, try enabling the "fast A20 gate" */
>         enable_a20_fast();
> -       if (a20_test_long())
> -       return 0;
> -       }
> -
> -       return -1;
> + if (a20_test_long())
> + return 0;
> + }
> +
> + return -1;
>  }
> --
> 1.7.2.5

The patch is probably corrupted or not against latest upstream, and the 
title of the patch has no relation to what the patch actually does.

Thanks,

	Ingo

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

* [PATCH] Enable A20 gate
  2013-05-07 11:20 ` Ingo Molnar
@ 2013-05-07 11:54   ` Syed Salman Mansoor
  2013-05-07 16:03     ` Jonathan Corbet
  0 siblings, 1 reply; 4+ messages in thread
From: Syed Salman Mansoor @ 2013-05-07 11:54 UTC (permalink / raw)
  To: hpa, tglx, mingo; +Cc: x86, linux-kernel, Syed Salman Mansoor

Ok thanks fot reply. I will make patch again. Moreover I downloaded
source using git clone
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git so
I assume I had latest code. Also kindly let me know what title means?
The name of patch file?
I am a newbie and trying to learn so that I can contribute whatever I can.

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

* Re: [PATCH] Enable A20 gate
  2013-05-07 11:54   ` Syed Salman Mansoor
@ 2013-05-07 16:03     ` Jonathan Corbet
  0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Corbet @ 2013-05-07 16:03 UTC (permalink / raw)
  To: Syed Salman Mansoor; +Cc: hpa, tglx, mingo, x86, linux-kernel

On Tue, 7 May 2013 16:54:23 +0500
Syed Salman Mansoor <syed.salman.mansoor@gmail.com> wrote:

> I am a newbie and trying to learn so that I can contribute whatever I can.

If you have not already done so, please have a look at:

	Documentation/HOWTO
	Documentation/development-process

both of which can be found in your source tree.  They will help you to
learn how to work with the kernel development community.

Thanks,

jon

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

end of thread, other threads:[~2013-05-07 16:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-07  8:41 [PATCH] Enable A20 gate Syed Salman Mansoor
2013-05-07 11:20 ` Ingo Molnar
2013-05-07 11:54   ` Syed Salman Mansoor
2013-05-07 16:03     ` Jonathan Corbet

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