On Mon, 9 Dec 2002, Andrew Ip wrote:
< struct irq_info slots[]; to
struct irq_info *slots;
andrew, are you sure that will work. The first usage means 'array of undefined length which will be set by an initializer', the second means 'pointer to a slot'. The second seems wrong to me.
ron