----- Original Message ----- > From: "Aaron Sierra" <[email protected]> > To: "Samuel Ortiz" <[email protected]> > Cc: "LKML" <[email protected]> > Sent: Thursday, February 14, 2013 11:35:04 AM > Subject: [PATCH] lpc_ich: use devres API to allocate private data > > > Signed-off-by: Aaron Sierra <[email protected]> > ---
[trim] > - priv = kmalloc(GFP_KERNEL, sizeof(struct lpc_ich_priv)); > + priv = devm_kzalloc(&dev->dev, > + sizeof(struct lpc_ich_priv), GFP_KERNEL); Samuel, Perhaps this should now include a comment about this patch also resolving the issue that Anatol reported yesterday? -Aaron -- 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/

