[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1402714093-15404-2-git-send-email-jeffoczek@gmail.com>
Date: Fri, 13 Jun 2014 22:48:13 -0400
From: Jeff Oczek <jeffoczek@...il.com>
To: gregkh@...uxfoundation.org
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Jeff Oczek <jeffoczek@...il.com>
Subject: [PATCH 2/2] staging: tidspbridge: Fix function pointer spacing in struct definition
Simple coding style changes
This is for the Eudyptula Challenge task 10
Signed-off-by: Jeff Oczek <jeffoczek@...il.com>
---
drivers/staging/tidspbridge/include/dspbridge/dblldefs.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/tidspbridge/include/dspbridge/dblldefs.h b/drivers/staging/tidspbridge/include/dspbridge/dblldefs.h
index 5e44ba6..dd3e6eb 100644
--- a/drivers/staging/tidspbridge/include/dspbridge/dblldefs.h
+++ b/drivers/staging/tidspbridge/include/dspbridge/dblldefs.h
@@ -168,11 +168,11 @@ struct dbll_attrs {
* These file manipulation functions should be compatible with the
* "C" run time library functions of the same name.
*/
- s32(*fread) (void *, size_t, size_t, void *);
- s32(*fseek) (void *, long, int);
- s32(*ftell) (void *);
- s32(*fclose) (void *);
- void *(*fopen) (const char *, const char *);
+ s32 (*fread)(void *, size_t, size_t, void *);
+ s32 (*fseek)(void *, long, int);
+ s32 (*ftell)(void *);
+ s32 (*fclose)(void *);
+ void *(*fopen)(const char *, const char *);
};
/*
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists