The patch titled Subject: drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-fix has been added to the -mm tree. Its filename is drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Alexander Aring <alex.aring@xxxxxxxxx> Subject: drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-fix fix whitespace, unused var `ret' Signed-off-by: Alexander Aring <alex.aring@xxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Cc: Stefan Schmidt <stefan@xxxxxxxxxxxxxxx> Cc: Marcel Holtmann <marcel@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/ieee802154/at86rf230.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff -puN drivers/net/ieee802154/at86rf230.c~drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-fix drivers/net/ieee802154/at86rf230.c --- a/drivers/net/ieee802154/at86rf230.c~drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-fix +++ a/drivers/net/ieee802154/at86rf230.c @@ -1645,15 +1645,14 @@ static struct dentry *at86rf230_debugfs_ static int at86rf230_stats_show(struct seq_file *file, void *offset) { struct at86rf230_local *lp = file->private; - int ret; seq_printf(file, "SUCCESS:\t\t%8llu\n", lp->trac.success); seq_printf(file, "SUCCESS_DATA_PENDING:\t%8llu\n", - lp->trac.success_data_pending); + lp->trac.success_data_pending); seq_printf(file, "SUCCESS_WAIT_FOR_ACK:\t%8llu\n", - lp->trac.success_wait_for_ack); + lp->trac.success_wait_for_ack); seq_printf(file, "CHANNEL_ACCESS_FAILURE:\t%8llu\n", - lp->trac.channel_access_failure); + lp->trac.channel_access_failure); seq_printf(file, "NO_ACK:\t\t\t%8llu\n", lp->trac.no_ack); seq_printf(file, "INVALID:\t\t%8llu\n", lp->trac.invalid); return 0; _ Patches currently in -mm which might be from alex.aring@xxxxxxxxx are drivers-net-ieee802154-at86rf230c-seq_printf-now-returns-null-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