Re: [PATCH v3 2/3] Staging: ipack: added support for the TEWSTPCI-200 carrier board

From: Manohar Vanga
Date: Tue May 08 2012 - 04:22:14 EST


Hey Samuel,

> +static void tpci200_uninstall(struct tpci200_board *tpci200)
> +{
> + int i;
> +
> + for (i = 0; i < TPCI200_NB_SLOT; i++) {
> + if (tpci200->slots[i].dev == NULL)
> + continue;
> + else
> + tpci200->slots[i].dev->driver->ops->remove(tpci200->slots[i].dev);

Check whether the function exists or you could have trouble :)
If you already added a check when registering to make sure this is always non-NULL then
ignore this. I would recommend wrapping this up in some function:

void tpci_slot_remove(struct tpci_slot *slot)
{
if (slot->dev->driver->ops->remove)
slot->dev->driver->ops->remove(slot->dev);
}

--
/manohar
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/