[PATCH] rbtree: fix typo in comment

2014-12-15 Thread John de la Garza
Signed-off-by: John de la Garza --- include/linux/rbtree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/rbtree.h b/include/linux/rbtree.h index 57e75ae..fb31765 100644 --- a/include/linux/rbtree.h +++ b/include/linux/rbtree.h @@ -51,7 +51,7 @@ struct rb_root

[PATCH] rbtree: fix typo in comment

2014-12-15 Thread John de la Garza
Signed-off-by: John de la Garza j...@jjdev.com --- include/linux/rbtree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/rbtree.h b/include/linux/rbtree.h index 57e75ae..fb31765 100644 --- a/include/linux/rbtree.h +++ b/include/linux/rbtree.h @@ -51,7 +51,7

[PATCH] kobject: grammar fix

2014-12-06 Thread John de la Garza
Signed-off-by: John de la Garza --- Documentation/kobject.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/kobject.txt b/Documentation/kobject.txt index f87241d..1be59a3 100644 --- a/Documentation/kobject.txt +++ b/Documentation/kobject.txt @@ -173,7 +173,7

[PATCH] kobject: grammar fix

2014-12-06 Thread John de la Garza
Signed-off-by: John de la Garza j...@jjdev.com --- Documentation/kobject.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/kobject.txt b/Documentation/kobject.txt index f87241d..1be59a3 100644 --- a/Documentation/kobject.txt +++ b/Documentation/kobject.txt

[PATCH] fs: use kfree_rcu instead of i_callback

2014-10-04 Thread John de la Garza
Since the callback is doing nothing more than calling kfree() we can use kfree_rcu() instead of having to use a callback. Signed-off-by: John de la Garza --- fs/inode.c | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/fs/inode.c b/fs/inode.c index 26753ba..51deccd

[PATCH] fs: use kfree_rcu instead of i_callback

2014-10-04 Thread John de la Garza
Since the callback is doing nothing more than calling kfree() we can use kfree_rcu() instead of having to use a callback. Signed-off-by: John de la Garza j...@jjdev.com --- fs/inode.c | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/fs/inode.c b/fs/inode.c index 26753ba

[PATCH] drivers:staging:lustre Fixed sparse warning: plain integer as NULL pointer

2014-03-24 Thread John de la Garza
plain integer as NULL pointer drivers/staging/lustre/lustre/lmv/lproc_lmv.c:213:47: warning: Using plain integer as NULL pointer drivers/staging/lustre/lustre/lmv/lproc_lmv.c:214:11: warning: Using plain integer as NULL pointer Signed-off-by: John de la Garza --- drivers/staging/lustre/lustre

[PATCH] drivers:staging:lustre Fixed sparse warning: plain integer as NULL pointer

2014-03-24 Thread John de la Garza
plain integer as NULL pointer drivers/staging/lustre/lustre/lmv/lproc_lmv.c:213:47: warning: Using plain integer as NULL pointer drivers/staging/lustre/lustre/lmv/lproc_lmv.c:214:11: warning: Using plain integer as NULL pointer Signed-off-by: John de la Garza j...@jjdev.com --- drivers/staging

[PATCH] drivers:staging:crystalhd Fixes sparse warning about incorrect type

2014-03-22 Thread John de la Garza
-by: John de la Garza --- drivers/staging/crystalhd/crystalhd_lnx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/crystalhd/crystalhd_lnx.h b/drivers/staging/crystalhd/crystalhd_lnx.h index 816e1cd..49e1ef3 100644 --- a/drivers/staging/crystalhd

[PATCH] drivers:staging:crystalhd Fixes sparse warning about incorrect type

2014-03-22 Thread John de la Garza
Signed-off-by: John de la Garza j...@jjdev.com --- drivers/staging/crystalhd/crystalhd_lnx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/crystalhd/crystalhd_lnx.h b/drivers/staging/crystalhd/crystalhd_lnx.h index 816e1cd..49e1ef3 100644 --- a/drivers

[PATCH] comedi:drivers:poc.c: unnecessary space before function pointer arguments

2014-03-06 Thread John de la Garza
Removed unnecessary space before function pointer arguments. Signed-off-by: John de la Garza --- drivers/staging/comedi/drivers/poc.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/comedi/drivers/poc.c b/drivers/staging/comedi/drivers/poc.c index

[PATCH] usbip:usbip_common.c: check return value of sscanf

2014-03-06 Thread John de la Garza
Added code to check return value of sscanf. Signed-off-by: John de la Garza --- drivers/staging/usbip/usbip_common.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/usbip/usbip_common.c b/drivers/staging/usbip/usbip_common.c index 4a2aab1..2a11233

[PATCH] usbip:vhci_sysfs.c: check return value of sscanf

2014-03-06 Thread John de la Garza
Added code to check return value of sscanf. Signed-off-by: John de la Garza --- drivers/staging/usbip/vhci_sysfs.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging/usbip/vhci_sysfs.c b/drivers/staging/usbip/vhci_sysfs.c index 03e6edf..82dd49f 100644

[PATCH] usbip:vhci_sysfs.c: check return value of sscanf

2014-03-06 Thread John de la Garza
Added code to check return value of sscanf. Signed-off-by: John de la Garza j...@jjdev.com --- drivers/staging/usbip/vhci_sysfs.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/staging/usbip/vhci_sysfs.c b/drivers/staging/usbip/vhci_sysfs.c index 03e6edf

[PATCH] usbip:usbip_common.c: check return value of sscanf

2014-03-06 Thread John de la Garza
Added code to check return value of sscanf. Signed-off-by: John de la Garza j...@jjdev.com --- drivers/staging/usbip/usbip_common.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/usbip/usbip_common.c b/drivers/staging/usbip/usbip_common.c index 4a2aab1

[PATCH] comedi:drivers:poc.c: unnecessary space before function pointer arguments

2014-03-06 Thread John de la Garza
Removed unnecessary space before function pointer arguments. Signed-off-by: John de la Garza j...@jjdev.com --- drivers/staging/comedi/drivers/poc.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/comedi/drivers/poc.c b/drivers/staging/comedi

[PATCH] arm: removed compiler warning

2014-02-16 Thread John de la Garza
Removed this compiler warning for arch/arm/boot/compressed/atags_to_fdt.c. The warning was: 'memsize' may be used uninitialized in this function. Signed-off-by: John de la Garza --- arch/arm/boot/compressed/atags_to_fdt.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH] arm: removed compiler warning

2014-02-16 Thread John de la Garza
Removed this compiler warning for arch/arm/boot/compressed/atags_to_fdt.c. The warning was: 'memsize' may be used uninitialized in this function. Signed-off-by: John de la Garza j...@jjdev.com --- arch/arm/boot/compressed/atags_to_fdt.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion