Re: [PATCH] sparc64: isa.c should cope with OBP nodes with no "reg" property

2006-12-29 Thread David Miller
From: Richard Mortimer <[EMAIL PROTECTED]> Date: Fri, 29 Dec 2006 22:47:25 + > I didn't get a fix with this mail and cannot see any on your git trees > on kernel.org (then again I may have been looking at the wrong ones). I forgot to push last night before going to bed, sorry :-) I did just

Re: [PATCH] sparc64: isa.c should cope with OBP nodes with no "reg" property

2006-12-29 Thread Richard Mortimer
On Thu, 2006-12-28 at 21:44 -0800, David Miller wrote: > From: [EMAIL PROTECTED] > Date: Sat, 23 Dec 2006 23:07:25 + > > > From: Richard Mortimer <[EMAIL PROTECTED]> > > > > The todm5819 Openboot device node on Netra X1 does not have a "reg" > > property. In this case of_get_property returns

Re: [PATCH] sparc64: isa.c should cope with OBP nodes with no "reg" property

2006-12-28 Thread David Miller
From: [EMAIL PROTECTED] Date: Sat, 23 Dec 2006 23:07:25 + > From: Richard Mortimer <[EMAIL PROTECTED]> > > The todm5819 Openboot device node on Netra X1 does not have a "reg" > property. In this case of_get_property returns NULL resulting in an > Oops. Avoid this by returning from isa_dev_get

[PATCH] sparc64: isa.c should cope with OBP nodes with no "reg" property

2006-12-23 Thread richm
From: Richard Mortimer <[EMAIL PROTECTED]> The todm5819 Openboot device node on Netra X1 does not have a "reg" property. In this case of_get_property returns NULL resulting in an Oops. Avoid this by returning from isa_dev_get_resource() without attempting to request_resource(). Signed-off-by: Ric