[PATCH 4/8] Documentation: Replacing reference to broken perfect patch URL

2013-05-23 Thread Ben Minerds
Replacing ref to broken URL, in the "perfect patch" document. Signed-off-by: Ben Minerds --- Documentation/development-process/patches/The-Perfect-Patch.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/development-process/patches/The-Perfect

[PATCH 5/8] Documentation: Replacing reference to broken submission format URL

2013-05-23 Thread Ben Minerds
Replacing refs to broken URL with internal documentation reference, and a little whitespace shuffle to keep it under 80 chars wide. Signed-off-by: Ben Minerds --- Documentation/HOWTO | 10 +- Documentation/SubmittingPatches | 2 +- Documentation/ja_JP/HOWTO

[PATCH 7/8] Documentation: Reformatting "Linux Kernel Patch Submission Format"

2013-05-23 Thread Ben Minerds
Reformatted "Linux Kernel Patch Submission Format", to wrap at 80 chars and underline headings. Signed-off-by: Ben Minerds --- .../patches/Patch-Submission-Format.txt| 86 -- 1 file changed, 64 insertions(+), 22 deletions(-) diff --git a/Doc

[PATCH 6/8] Documentation: Updating a broken link in "the perfect patch"

2013-05-23 Thread Ben Minerds
The link to Andrews patches were out of date. Replacing with new links. Also slightly reformatted to allow easier selection of links. Signed-off-by: Ben Minerds --- Documentation/development-process/patches/The-Perfect-Patch.txt | 8 1 file changed, 4 insertions(+), 4 deletions

[PATCH 3/8] Documentation: Replacing references to broken perfect patch URL

2013-05-23 Thread Ben Minerds
Replacing refs to broken URL with internal documentation reference. Signed-off-by: Ben Minerds --- Documentation/HOWTO | 4 ++-- Documentation/SubmittingPatches | 2 +- Documentation/ja_JP/HOWTO | 4 ++-- Documentation/ja_JP/SubmittingPatches | 2

[PATCH 2/8] Documentation: Adding "Linux Kernel Patch Submission Format"

2013-05-23 Thread Ben Minerds
Adding "Linux Kernel Patch Submission Format" reference to remove external dependancy. Signed-off-by: Ben Minerds --- .../patches/Patch-Submission-Format.txt| 89 ++ 1 file changed, 89 insertions(+) create mode 100644 Documentation/developme

[PATCH 1/8] Documentation: Adding "The Perfect Patch" by Andrew Morton

2013-05-23 Thread Ben Minerds
Adding Andrews advice on patch submission and subdirectory for further patch documentstion. Signed-off-by: Ben Minerds --- .../patches/The-Perfect-Patch.txt | 167 + 1 file changed, 167 insertions(+) create mode 100644 Documentation/development-process

[PATCH 0/8] Documentation: Updating docs and links relating to patches.

2013-05-23 Thread Ben Minerds
patch sub directory. Ben Minerds (8): Documentation: Adding "The Perfect Patch" by Andrew Morton Documentation: Adding "Linux Kernel Patch Submission Format" Documentation: Replacing references to broken perfect patch URL Documentation: Replacing reference to broken perf

[PATCH] Documentation: Updated broken link in HOWTO

2013-05-22 Thread Ben Minerds
Updated broken "The Perfect Patch" link in HOWTO to a copy at kerneltrap.org. Signed-off-by: Ben Minerds --- Documentation/HOWTO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/HOWTO b/Documentation/HOWTO index a9f288f..27faae3 100644 --- a/Documenta

[PATCH] usb: gadget: Conform with checkpatch -3 warnings, 1 error

2012-09-08 Thread Ben Minerds
Removed 3 checkpatch.sh warnings and 1 error in drivers/usb/gadget/serial.c. -sizeof brackets x2 -remove initialise to 0 -pr_warning to pr_warn Signed-off-by: Ben Minerds --- drivers/usb/gadget/serial.c |9 - 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/usb

[PATCH 6/6] USB: serial: Removed unrequired parentheses.

2012-07-11 Thread Ben Minerds
Changes to conform with checkpatch.sh script. - return is not a function, parentheses not required. Removed 1 checkpatch.sh error. Signed-off-by: Ben Minerds --- drivers/usb/serial/keyspan.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb/serial/keyspan.c

[PATCH 5/6] USB: serial: Removed trailing whitespace.

2012-07-11 Thread Ben Minerds
Changes to conform with checkpatch.sh script. - trailing whitespace. Removed 1 checkpatch.sh error. Signed-off-by: Ben Minerds --- drivers/usb/serial/keyspan.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb/serial/keyspan.c b/drivers/usb/serial/keyspan.c

[PATCH 4/6] USB: serial: Fixed space near open parenthesis.

2012-07-11 Thread Ben Minerds
Changes to conform with checkpatch.sh script. - space near open parenthesis '('. Removed 2 checkpatch.sh errors. Signed-off-by: Ben Minerds --- drivers/usb/serial/keyspan.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb/serial/keyspan.c b/d

[PATCH 3/6] USB: serial: Fixed space around equals.

2012-07-11 Thread Ben Minerds
Changes to conform with checkpatch.sh script. - space around '='. Removed 1 checkpatch.sh error. Signed-off-by: Ben Minerds --- drivers/usb/serial/keyspan.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb/serial/keyspan.c b/drivers/usb/serial

[PATCH 2/6] USB: serial: Fix spacing around conditional.

2012-07-11 Thread Ben Minerds
Changes to conform with checkpatch.sh script. - spaces around '?' and ':'.Removed 14 checkpatch.sh errors. Signed-off-by: Ben Minerds --- drivers/usb/serial/keyspan.c | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/us

[PATCH 1/6] USB: serial: Removed space before tabs.

2012-07-11 Thread Ben Minerds
Changes to conform with checkpatch.sh script. - no space before tabs. Removed 52 checkpatch.sh warnings. Signed-off-by: Ben Minerds --- drivers/usb/serial/keyspan.c | 106 +- 1 files changed, 53 insertions(+), 53 deletions(-) diff --git a/drivers/usb

[PATCH 0/6] USB: serial: Changes to conform with checkpatch.

2012-07-11 Thread Ben Minerds
Removed various checkpatch.sh warnings and errors. Split patch by warning/error type. Corrected line wraps in emails. Signed-off-by: Ben Minerds --- drivers/usb/serial/keyspan.c | 106 +- 1 files changed, 53 insertions(+), 53 deletions(-) diff --git a