Commit 524e3b62 authored by Markus Lidel's avatar Markus Lidel Committed by Linus Torvalds

[PATCH] I2O: Lindent run

Signed-off-by: default avatarMarkus Lidel <Markus.Lidel@shadowconnect.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f6ed39a6
...@@ -43,7 +43,7 @@ static inline int i2o_device_issue_claim(struct i2o_device *dev, u32 cmd, ...@@ -43,7 +43,7 @@ static inline int i2o_device_issue_claim(struct i2o_device *dev, u32 cmd,
msg->u.head[0] = cpu_to_le32(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0); msg->u.head[0] = cpu_to_le32(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0);
msg->u.head[1] = msg->u.head[1] =
cpu_to_le32(cmd << 24 | HOST_TID << 12 | dev->lct_data.tid); cpu_to_le32(cmd << 24 | HOST_TID << 12 | dev->lct_data.tid);
msg->body[0] = cpu_to_le32(type); msg->body[0] = cpu_to_le32(type);
return i2o_msg_post_wait(dev->iop, msg, 60); return i2o_msg_post_wait(dev->iop, msg, 60);
...@@ -123,7 +123,6 @@ int i2o_device_claim_release(struct i2o_device *dev) ...@@ -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) ...@@ -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
...@@ -250,10 +248,10 @@ static struct i2o_device *i2o_device_add(struct i2o_controller *c, ...@@ -250,10 +248,10 @@ static struct i2o_device *i2o_device_add(struct i2o_controller *c,
/* create user entries refering to this device */ /* create user entries refering to this device */
list_for_each_entry(tmp, &c->devices, list) list_for_each_entry(tmp, &c->devices, list)
if ((tmp->lct_data.user_tid == i2o_dev->lct_data.tid) if ((tmp->lct_data.user_tid == i2o_dev->lct_data.tid)
&& (tmp != i2o_dev)) && (tmp != i2o_dev))
sysfs_create_link(&tmp->device.kobj, sysfs_create_link(&tmp->device.kobj,
&i2o_dev->device.kobj, "user"); &i2o_dev->device.kobj, "user");
/* create parent entries for this device */ /* create parent entries for this device */
tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.parent_tid); tmp = i2o_iop_find_device(i2o_dev->iop, i2o_dev->lct_data.parent_tid);
...@@ -263,10 +261,10 @@ static struct i2o_device *i2o_device_add(struct i2o_controller *c, ...@@ -263,10 +261,10 @@ static struct i2o_device *i2o_device_add(struct i2o_controller *c,
/* create parent entries refering to this device */ /* create parent entries refering to this device */
list_for_each_entry(tmp, &c->devices, list) list_for_each_entry(tmp, &c->devices, list)
if ((tmp->lct_data.parent_tid == i2o_dev->lct_data.tid) if ((tmp->lct_data.parent_tid == i2o_dev->lct_data.tid)
&& (tmp != i2o_dev)) && (tmp != i2o_dev))
sysfs_create_link(&tmp->device.kobj, sysfs_create_link(&tmp->device.kobj,
&i2o_dev->device.kobj, "parent"); &i2o_dev->device.kobj, "parent");
i2o_driver_notify_device_add_all(i2o_dev); i2o_driver_notify_device_add_all(i2o_dev);
...@@ -410,7 +408,6 @@ int i2o_device_parse_lct(struct i2o_controller *c) ...@@ -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
*/ */
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
#include <linux/workqueue.h> #include <linux/workqueue.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/sched.h> /* wait_event_interruptible_timeout() needs this */ #include <linux/sched.h> /* wait_event_interruptible_timeout() needs this */
#include <asm/param.h> /* HZ */ #include <asm/param.h> /* HZ */
#include "core.h" #include "core.h"
......
...@@ -103,14 +103,14 @@ ...@@ -103,14 +103,14 @@
#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 {
u32 context; /* FIXME: 64bit support */ u32 context; /* FIXME: 64bit support */
struct i2o_packet_info packet_info[1]; struct i2o_packet_info packet_info[1];
}; };
...@@ -127,14 +127,14 @@ struct i2o_lan_local { ...@@ -127,14 +127,14 @@ struct i2o_lan_local {
u8 unit; u8 unit;
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 */
u16 tx_max_out; /* DDM's Tx queue len */ u16 tx_max_out; /* DDM's Tx queue len */
u8 sgl_max; /* max SGLs in one message frame */ u8 sgl_max; /* max SGLs in one message frame */
u32 m; /* IOP address of the batch msg frame */ u32 m; /* IOP address of the batch msg frame */
struct work_struct i2o_batch_send_task; struct work_struct i2o_batch_send_task;
int send_active; int send_active;
...@@ -144,16 +144,16 @@ struct i2o_lan_local { ...@@ -144,16 +144,16 @@ struct i2o_lan_local {
spinlock_t tx_lock; spinlock_t tx_lock;
u32 max_size_mc_table; /* max number of multicast addresses */ u32 max_size_mc_table; /* max number of multicast addresses */
/* LAN OSM configurable parameters are here: */ /* LAN OSM configurable parameters are here: */
u16 max_buckets_out; /* max nbr of buckets to send to DDM */ u16 max_buckets_out; /* max nbr of buckets to send to DDM */
u16 bucket_thresh; /* send more when this many used */ u16 bucket_thresh; /* send more when this many used */
u16 rx_copybreak; u16 rx_copybreak;
u8 tx_batch_mode; /* Set when using batch mode sends */ u8 tx_batch_mode; /* Set when using batch mode sends */
u32 i2o_event_mask; /* To turn on interesting event flags */ u32 i2o_event_mask; /* To turn on interesting event flags */
}; };
#endif /* _I2O_LAN_H */ #endif /* _I2O_LAN_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment