If an administrator wants to use MEI, they can search the logs for 'mei'. Otherwise they don't need a glaring reminder that their hardware doesn't actually support MEI.
Signed-off-by: Andy Lutomirski <[email protected]> --- drivers/misc/mei/pci-me.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/misc/mei/pci-me.c b/drivers/misc/mei/pci-me.c index ddadd08..809021e 100644 --- a/drivers/misc/mei/pci-me.c +++ b/drivers/misc/mei/pci-me.c @@ -127,7 +127,7 @@ static int mei_me_probe(struct pci_dev *pdev, const struct pci_device_id *ent) if (!mei_me_quirk_probe(pdev, ent)) { err = -ENODEV; - goto end; + return err; /* No point in logging an error. */ } /* enable pci dev */ -- 1.8.5.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

