Prev: [PATCH 2/2] net: remove last uses of __attribute__((packed))
Next: net: remove last uses of __attribute__((packed))
From: Joe Perches on 21 Jul 2010 17:20 There are a couple of errors in the previous patch. Two of the first DUMP_<foo> entries are duplicated. Sorry, bad use of emacs macros... Signed-off-by: Joe Perches <joe(a)perches.com> --- drivers/net/qlge/qlge_dbg.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/net/qlge/qlge_dbg.c b/drivers/net/qlge/qlge_dbg.c index 9d9498b..4747492 100644 --- a/drivers/net/qlge/qlge_dbg.c +++ b/drivers/net/qlge/qlge_dbg.c @@ -1465,7 +1465,6 @@ void ql_dump_regs(struct ql_adapter *qdev) { pr_err("reg dump for function #%d\n", qdev->func); DUMP_REG(qdev, SYS); - DUMP_REG(qdev, SYS); DUMP_REG(qdev, RST_FO); DUMP_REG(qdev, FSC); DUMP_REG(qdev, CSR); @@ -1535,7 +1534,6 @@ void ql_dump_stat(struct ql_adapter *qdev) { pr_err("%s: Enter\n", __func__); DUMP_STAT(qdev, tx_pkts); - DUMP_STAT(qdev, tx_pkts); DUMP_STAT(qdev, tx_bytes); DUMP_STAT(qdev, tx_mcast_pkts); DUMP_STAT(qdev, tx_bcast_pkts); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |