The patch titled pnp: clean up pnp_fixup_device() has been removed from the -mm tree. Its filename was pnp-cleanup-pnp_fixup_device.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: pnp: clean up pnp_fixup_device() From: Rene Herman <rene.herman@xxxxxxxxx> Make it look a bit more like pci_fixup_device/pci_do_fixups. Also print the PnP ID and delete the () from the "foo+0x0/0x1234()". Signed-off-by: Rene Herman <rene.herman@xxxxxxxxx> Tested-by: Uwe Bugla <uwe.bugla@xxxxxx> Acked-by: Uwe Bugla <uwe.bugla@xxxxxx> Acked-by: Bjorn Helgaas <bjorn.helgaas@xxxxxx> Cc: Takashi Iwai <tiwai@xxxxxxx> Cc: Len Brown <len.brown@xxxxxxxxx Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/pnp/quirks.c | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff -puN drivers/pnp/quirks.c~pnp-cleanup-pnp_fixup_device drivers/pnp/quirks.c --- a/drivers/pnp/quirks.c~pnp-cleanup-pnp_fixup_device +++ a/drivers/pnp/quirks.c @@ -212,20 +212,16 @@ static struct pnp_fixup pnp_fixups[] = { void pnp_fixup_device(struct pnp_dev *dev) { - int i = 0; - void (*quirk)(struct pnp_dev *); - - while (*pnp_fixups[i].id) { - if (compare_pnp_id(dev->id, pnp_fixups[i].id)) { - quirk = pnp_fixups[i].quirk_function; + struct pnp_fixup *f; + for (f = pnp_fixups; *f->id; f++) { + if (!compare_pnp_id(dev->id, f->id)) + continue; #ifdef DEBUG - dev_dbg(&dev->dev, "calling "); - print_fn_descriptor_symbol("%s()\n", - (unsigned long) *quirk); + dev_dbg(&dev->dev, "%s: calling ", f->id); + print_fn_descriptor_symbol("%s\n", + (unsigned long) f->quirk_function); #endif - (*quirk)(dev); - } - i++; + f->quirk_function(dev); } } _ Patches currently in -mm which might be from rene.herman@xxxxxxxxx are origin.patch make-pnp_add_card_id-static.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html