[PATCH] tpm_infineon section fixup

From: Randy.Dunlap
Date: Fri Apr 14 2006 - 22:37:09 EST


From: Randy Dunlap <rdunlap@xxxxxxxxxxxx>

Use __devexit_p() for the exit/remove function to protect
against discarding it.

WARNING: drivers/char/tpm/tpm_infineon.o - Section mismatch: reference to .exit.text:tpm_inf_pnp_remove from .data between 'tpm_inf_pnp' (at offset 0x20) and 'tpm_inf'

Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx>
---
drivers/char/tpm/tpm_infineon.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)

--- linux-2617-rc1g8.orig/drivers/char/tpm/tpm_infineon.c
+++ linux-2617-rc1g8/drivers/char/tpm/tpm_infineon.c
@@ -15,6 +15,7 @@
* License.
*/

+#include <linux/init.h>
#include <linux/pnp.h>
#include "tpm.h"

@@ -520,7 +521,7 @@ static struct pnp_driver tpm_inf_pnp = {
},
.id_table = tpm_pnp_tbl,
.probe = tpm_inf_pnp_probe,
- .remove = tpm_inf_pnp_remove,
+ .remove = __devexit_p(tpm_inf_pnp_remove),
};

static int __init init_inf(void)


---
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/