diff options
| author | Joe Perches <joe@perches.com> | 2011-06-09 09:13:32 -0700 | 
|---|---|---|
| committer | Jiri Kosina <jkosina@suse.cz> | 2011-06-10 14:55:36 +0200 | 
| commit | 28f65c11f2ffb3957259dece647a24f8ad2e241b (patch) | |
| tree | 6b7621d09d10df89eedd908d4506fb9f457a909f /drivers/message/i2o | |
| parent | 140a1ef2f91a00e1d25f0878c193abdc25bf6ebe (diff) | |
| download | olio-linux-3.10-28f65c11f2ffb3957259dece647a24f8ad2e241b.tar.xz olio-linux-3.10-28f65c11f2ffb3957259dece647a24f8ad2e241b.zip  | |
treewide: Convert uses of struct resource to resource_size(ptr)
Several fixes as well where the +1 was missing.
Done via coccinelle scripts like:
@@
struct resource *ptr;
@@
- ptr->end - ptr->start + 1
+ resource_size(ptr)
and some grep and typing.
Mostly uncompiled, no cross-compilers.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/message/i2o')
| -rw-r--r-- | drivers/message/i2o/iop.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/message/i2o/iop.c b/drivers/message/i2o/iop.c index 090d2a3a654..a8c08f332da 100644 --- a/drivers/message/i2o/iop.c +++ b/drivers/message/i2o/iop.c @@ -681,11 +681,11 @@ static int i2o_iop_systab_set(struct i2o_controller *c)  		if (root && allocate_resource(root, res, sb->desired_mem_size, sb->desired_mem_size, sb->desired_mem_size, 1 << 20,	/* Unspecified, so use 1Mb and play safe */  					      NULL, NULL) >= 0) {  			c->mem_alloc = 1; -			sb->current_mem_size = 1 + res->end - res->start; +			sb->current_mem_size = resource_size(res);  			sb->current_mem_base = res->start;  			osm_info("%s: allocated %llu bytes of PCI memory at "  				"0x%016llX.\n", c->name, -				(unsigned long long)(1 + res->end - res->start), +				(unsigned long long)resource_size(res),  				(unsigned long long)res->start);  		}  	} @@ -703,11 +703,11 @@ static int i2o_iop_systab_set(struct i2o_controller *c)  		if (root && allocate_resource(root, res, sb->desired_io_size, sb->desired_io_size, sb->desired_io_size, 1 << 20,	/* Unspecified, so use 1Mb and play safe */  					      NULL, NULL) >= 0) {  			c->io_alloc = 1; -			sb->current_io_size = 1 + res->end - res->start; +			sb->current_io_size = resource_size(res);  			sb->current_mem_base = res->start;  			osm_info("%s: allocated %llu bytes of PCI I/O at "  				"0x%016llX.\n", c->name, -				(unsigned long long)(1 + res->end - res->start), +				(unsigned long long)resource_size(res),  				(unsigned long long)res->start);  		}  	}  |