On Thu, Jun 09, 2011 at 09:43:44AM +0200, Rafał Miłecki wrote:
quoted
dev = b43_bus_dev_ssb_init(sdev);
+ if (!dev)
+ return -ENOMEM;
I'm not sure if you should be aware of the reason here. What about returning
error code by b43_bus_dev..., reporting it here with b43err and returning
ENODEV or sth?
The kmalloc failure prints out a whole lot of crap. Surely we don't
need to add more code in every function for an error that is almost
certainly not going to happen in real life.
If we were really worried about returning the right error code, then
we'd return an ERR_PTR() from the lower levels etc. I don't think
it's worth it though.
regards,
dan carpenter