Himanshu Jha <himanshujha199640@xxxxxxxxx> writes: > Check memory allocation failure and return -ENOMEM rather than just > retuning void. > > Signed-off-by: Himanshu Jha <himanshujha199640@xxxxxxxxx> [...] > -static void at76_dump_mib_mac_addr(struct at76_priv *priv) > +static int at76_dump_mib_mac_addr(struct at76_priv *priv) > { > int i; > int ret; > @@ -940,7 +940,7 @@ static void at76_dump_mib_mac_addr(struct at76_priv *priv) > GFP_KERNEL); > > if (!m) > - return; > + return -ENOMEM; This feels rather pointless. You are changing these functions to return an error code but the callers it anyway. And besides, did you check where these are actually used? if (at76_debug & DBG_MIB) { at76_dump_mib_mac(priv); at76_dump_mib_mac_addr(priv); at76_dump_mib_mac_mgmt(priv); at76_dump_mib_mac_wep(priv); at76_dump_mib_mdomain(priv); at76_dump_mib_phy(priv); at76_dump_mib_local(priv); } So it's just for debug messages and the current error handling looks the correct approach. There is not much anything else we can do than just skip the message printout. -- Kalle Valo