[PATCH] I2O: Lindent run
Signed-off-by: Markus Lidel <Markus.Lidel@shadowconnect.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
f6ed39a6e1
commit
524e3b623a
3 changed files with 29 additions and 32 deletions
|
@ -123,7 +123,6 @@ int i2o_device_claim_release(struct i2o_device *dev)
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* i2o_device_release - release the memory for a I2O device
|
* i2o_device_release - release the memory for a I2O device
|
||||||
* @dev: I2O device which should be released
|
* @dev: I2O device which should be released
|
||||||
|
@ -140,7 +139,6 @@ static void i2o_device_release(struct device *dev)
|
||||||
kfree(i2o_dev);
|
kfree(i2o_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* i2o_device_show_class_id - Displays class id of I2O device
|
* i2o_device_show_class_id - Displays class id of I2O device
|
||||||
* @dev: device of which the class id should be displayed
|
* @dev: device of which the class id should be displayed
|
||||||
|
@ -410,7 +408,6 @@ int i2o_device_parse_lct(struct i2o_controller *c)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Run time support routines
|
* Run time support routines
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -103,10 +103,10 @@
|
||||||
#define I2O_LAN_DSC_SUSPENDED 0x11
|
#define I2O_LAN_DSC_SUSPENDED 0x11
|
||||||
|
|
||||||
struct i2o_packet_info {
|
struct i2o_packet_info {
|
||||||
u32 offset : 24;
|
u32 offset:24;
|
||||||
u32 flags : 8;
|
u32 flags:8;
|
||||||
u32 len : 24;
|
u32 len:24;
|
||||||
u32 status : 8;
|
u32 status:8;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct i2o_bucket_descriptor {
|
struct i2o_bucket_descriptor {
|
||||||
|
@ -128,7 +128,7 @@ struct i2o_lan_local {
|
||||||
struct i2o_device *i2o_dev;
|
struct i2o_device *i2o_dev;
|
||||||
|
|
||||||
struct fddi_statistics stats; /* see also struct net_device_stats */
|
struct fddi_statistics stats; /* see also struct net_device_stats */
|
||||||
unsigned short (*type_trans)(struct sk_buff *, struct net_device *);
|
unsigned short (*type_trans) (struct sk_buff *, struct net_device *);
|
||||||
atomic_t buckets_out; /* nbr of unused buckets on DDM */
|
atomic_t buckets_out; /* nbr of unused buckets on DDM */
|
||||||
atomic_t tx_out; /* outstanding TXes */
|
atomic_t tx_out; /* outstanding TXes */
|
||||||
u8 tx_count; /* packets in one TX message frame */
|
u8 tx_count; /* packets in one TX message frame */
|
||||||
|
|
Loading…
Reference in a new issue