The patch titled xc5000: fix build error when built as module has been removed from the -mm tree. Its filename was xc5000-fix-build-error-when-built-as-module.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: xc5000: fix build error when built as module From: Tony Breeds <tony@xxxxxxxxxxxxxxxxxx> drivers/built-in.o: In function `set_type': tuner-core.c:(.text+0x8879d): undefined reference to `xc5000_attach' Signed-off-by: Tony Breeds <tony@xxxxxxxxxxxxxxxxxx> Reviewed-by: Michael Krufky <mkrufky@xxxxxxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/media/dvb/frontends/xc5000.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/media/dvb/frontends/xc5000.h~xc5000-fix-build-error-when-built-as-module drivers/media/dvb/frontends/xc5000.h --- a/drivers/media/dvb/frontends/xc5000.h~xc5000-fix-build-error-when-built-as-module +++ a/drivers/media/dvb/frontends/xc5000.h @@ -45,7 +45,8 @@ struct xc5000_config { /* xc5000 callback command */ #define XC5000_TUNER_RESET 0 -#if defined(CONFIG_DVB_TUNER_XC5000) || defined(CONFIG_DVB_TUNER_XC5000_MODULE) +#if defined(CONFIG_DVB_TUNER_XC5000) || \ + (defined(CONFIG_DVB_TUNER_XC5000_MODULE) && defined(MODULE)) extern struct dvb_frontend* xc5000_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct xc5000_config *cfg); _ Patches currently in -mm which might be from tony@xxxxxxxxxxxxxxxxxx are fix-compile-of-swim3-as-module.patch git-dvb.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