Prev: perf: Fix argument of perf_arch_fetch_caller_regs
Next: [PATCH] vt/console: try harder to print output when panicing
From: Gustavo Silva on 22 Jun 2010 23:40 This is a patch to the memrar_handler.c file that fixes up the following issues: ERROR: trailing whitespace ERROR: code indent should use tabs where possible WARNING: please, no space before tabs Signed-off-by: Gustavo Silva <silvagustavo(a)users.sourceforge.net> --- drivers/staging/memrar/memrar_handler.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/memrar/memrar_handler.c b/drivers/staging/memrar/memrar_handler.c index efa7fd6..cb2840e 100644 --- a/drivers/staging/memrar/memrar_handler.c +++ b/drivers/staging/memrar/memrar_handler.c @@ -291,7 +291,7 @@ static int memrar_init_rar_resources(int rarnum, char const *devname) if (rar_get_address(rarnum, &low, &high) != 0) /* No RAR is available. */ return -ENODEV; - + if (low == 0 || high == 0) { rar->base = 0; rar->length = 0; @@ -531,7 +531,7 @@ static long memrar_get_stat(struct RAR_stat *r) { struct memrar_allocator *allocator; - if (!memrar_is_valid_rar_type(r->type)) + if (!memrar_is_valid_rar_type(r->type)) return -EINVAL; if (!memrars[r->type].allocated) -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |