diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-10 10:53:39 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-10 10:56:37 +0100 |
commit | 65ff61bb7bcd35e3922a684c068289ccbcea32d7 (patch) | |
tree | 868cae1c1b1b48ad3cb1e8617c0c8f51c56bb4ab | |
parent | e2dde67c3f46f5bbe7deb90e52b61977df30a52c (diff) |
remove register qualifiers
* device/blkio.c: Remove register qualifiers.
-rw-r--r-- | device/blkio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/device/blkio.c b/device/blkio.c index 27fec0e..939067d 100644 --- a/device/blkio.c +++ b/device/blkio.c @@ -41,9 +41,9 @@ io_return_t block_io(strat, max_count, ior) void (*strat)(); void (*max_count)(); - register io_req_t ior; + io_req_t ior; { - register kern_return_t rc; + kern_return_t rc; boolean_t wait = FALSE; /* @@ -89,7 +89,7 @@ io_return_t block_io(strat, max_count, ior) #define MAX_PHYS (256 * 1024) void minphys(ior) - register io_req_t ior; + io_req_t ior; { if ((ior->io_op & (IO_WRITE | IO_READ | IO_OPEN)) == IO_WRITE) return; |