The patch titled tpm-more-bios-log-parsing-fixes-tidy has been removed from the -mm tree. Its filename is tpm-more-bios-log-parsing-fixes-tidy.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. ------------------------------------------------------ Subject: tpm-more-bios-log-parsing-fixes-tidy From: Andrew Morton <akpm@xxxxxxxx> Cc: Seiji Munetoh <seiji.munetoh@xxxxxxxxx> Cc: Kylene Hall <kjhall@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/tpm/tpm_bios.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/char/tpm/tpm_bios.c~tpm-more-bios-log-parsing-fixes-tidy drivers/char/tpm/tpm_bios.c --- 25/drivers/char/tpm/tpm_bios.c~tpm-more-bios-log-parsing-fixes-tidy Fri May 26 13:54:26 2006 +++ 25-akpm/drivers/char/tpm/tpm_bios.c Fri May 26 13:54:26 2006 @@ -284,11 +284,11 @@ static int get_event_name(char *dest, st static int tpm_binary_bios_measurements_show(struct seq_file *m, void *v) { - struct tcpa_event *event = (struct tcpa_event *) v; - char *data = (char *) v; + struct tcpa_event *event = v; + char *data = v; int i; - for (i = 0;i < sizeof(struct tcpa_event) + event->event_size; i++) + for (i = 0; i < sizeof(struct tcpa_event) + event->event_size; i++) seq_putc(m, data[i]); return 0; _ Patches currently in -mm which might be from akpm@xxxxxxxx are origin.patch ext3-resize-fix-double-unlock_super.patch tpm-more-bios-log-parsing-fixes.patch tpm-more-bios-log-parsing-fixes-tidy.patch revert-swsusp-add-check-for-suspension-of-x-controlled-devices.patch net-compath-build-fix.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