summaryrefslogtreecommitdiffstats
path: root/include/blk.h
diff options
context:
space:
mode:
authorEric Nelson <eric@nelint.com>2016-04-02 07:37:14 -0700
committerTom Rini <trini@konsulko.com>2016-04-11 12:44:38 -0400
commitc8e4d2a8b90cfb2a19c274ba7e5525b2757dab77 (patch)
tree6bc010760fcd445915d1e668d3751329d826138a /include/blk.h
parent195c94a24071fa6be913219e0d98bb210b06ccb5 (diff)
downloadblackbird-obmc-uboot-c8e4d2a8b90cfb2a19c274ba7e5525b2757dab77.tar.gz
blackbird-obmc-uboot-c8e4d2a8b90cfb2a19c274ba7e5525b2757dab77.zip
drivers: block: fix placement of parameters
Signed-off-by: Eric Nelson <eric@nelint.com>
Diffstat (limited to 'include/blk.h')
-rw-r--r--include/blk.h34
1 files changed, 14 insertions, 20 deletions
diff --git a/include/blk.h b/include/blk.h
index 263a791f4c..f62467105a 100644
--- a/include/blk.h
+++ b/include/blk.h
@@ -96,10 +96,9 @@ struct blk_desc {
*
* @return - '1' if block returned from cache, '0' otherwise.
*/
-int blkcache_read
- (int iftype, int dev,
- lbaint_t start, lbaint_t blkcnt,
- unsigned long blksz, void *buffer);
+int blkcache_read(int iftype, int dev,
+ lbaint_t start, lbaint_t blkcnt,
+ unsigned long blksz, void *buffer);
/**
* blkcache_fill() - make data read from a block device available
@@ -113,10 +112,9 @@ int blkcache_read
* @param buf - buffer containing data to cache
*
*/
-void blkcache_fill
- (int iftype, int dev,
- lbaint_t start, lbaint_t blkcnt,
- unsigned long blksz, void const *buffer);
+void blkcache_fill(int iftype, int dev,
+ lbaint_t start, lbaint_t blkcnt,
+ unsigned long blksz, void const *buffer);
/**
* blkcache_invalidate() - discard the cache for a set of blocks
@@ -125,8 +123,7 @@ void blkcache_fill
* @param iftype - IF_TYPE_x for type of device
* @param dev - device index of particular type
*/
-void blkcache_invalidate
- (int iftype, int dev);
+void blkcache_invalidate(int iftype, int dev);
/**
* blkcache_configure() - configure block cache
@@ -156,21 +153,18 @@ void blkcache_stats(struct block_cache_stats *stats);
#else
-static inline int blkcache_read
- (int iftype, int dev,
- lbaint_t start, lbaint_t blkcnt,
- unsigned long blksz, void *buffer)
+static inline int blkcache_read(int iftype, int dev,
+ lbaint_t start, lbaint_t blkcnt,
+ unsigned long blksz, void *buffer)
{
return 0;
}
-static inline void blkcache_fill
- (int iftype, int dev,
- lbaint_t start, lbaint_t blkcnt,
- unsigned long blksz, void const *buffer) {}
+static inline void blkcache_fill(int iftype, int dev,
+ lbaint_t start, lbaint_t blkcnt,
+ unsigned long blksz, void const *buffer) {}
-static inline void blkcache_invalidate
- (int iftype, int dev) {}
+static inline void blkcache_invalidate(int iftype, int dev) {}
#endif
OpenPOWER on IntegriCloud