The patch titled smsc-ircc2: minimal PNP hotplug support has been removed from the -mm tree. Its filename is smsc-ircc2-minimal-pnp-hotplug-support.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: David Brownell <david-b@xxxxxxxxxxx> Minimal PNP hotplug support for the smsc-ircc2 driver. A modular driver will be modprobed via hotplug, but still bypasses driver model probing. Signed-off-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Cc: Jean Tourrilhes <jt@xxxxxxxxxx> Cc: Samuel Ortiz <samuel.ortiz@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/irda/smsc-ircc2.c | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletion(-) diff -puN drivers/net/irda/smsc-ircc2.c~smsc-ircc2-minimal-pnp-hotplug-support drivers/net/irda/smsc-ircc2.c --- 25/drivers/net/irda/smsc-ircc2.c~smsc-ircc2-minimal-pnp-hotplug-support Mon May 8 13:32:59 2006 +++ 25-akpm/drivers/net/irda/smsc-ircc2.c Mon May 8 13:32:59 2006 @@ -54,6 +54,7 @@ #include <linux/rtnetlink.h> #include <linux/serial_reg.h> #include <linux/dma-mapping.h> +#include <linux/pnp.h> #include <linux/platform_device.h> #include <asm/io.h> @@ -358,6 +359,16 @@ static inline void register_bank(int iob iobase + IRCC_MASTER); } +#ifdef CONFIG_PNP +/* PNP hotplug support */ +static const struct pnp_device_id smsc_ircc_pnp_table[] = { + { .id = "SMCf010", .driver_data = 0 }, + /* and presumably others */ + { } +}; +MODULE_DEVICE_TABLE(pnp, smsc_ircc_pnp_table); +#endif + /******************************************************************************* * @@ -2072,7 +2083,8 @@ static void smsc_ircc_sir_wait_hw_transm /* PROBING * - * + * REVISIT we can be told about the device by PNP, and should use that info + * instead of probing hardware and creating a platform_device ... */ static int __init smsc_ircc_look_for_chips(void) _ Patches currently in -mm which might be from david-b@xxxxxxxxxxx are s3c24xx-gpio-based-spi-driver.patch s3c24xx-hardware-spi-driver.patch s3c24xx-hardware-spi-driver-tidy.patch rtc-framework-driver-for-ds1307-and-similar-rtc-chips.patch random-remove-bogus-sa_sample_random-from-at91-compact-flash-driver.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