diff options
author | Colin Ian King <colin.king@canonical.com> | 2015-06-05 18:19:11 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-06-07 07:31:22 (GMT) |
commit | 908e80d6546813aaf8b546b4b4483fcec24190b6 (patch) | |
tree | 17ad6b2c584d3018db924b9f777cabbbcde69b20 | |
parent | c5726d26b8147030c394964aabfb5d36140c08ef (diff) | |
download | linux-908e80d6546813aaf8b546b4b4483fcec24190b6.tar.xz |
fddi: print an address with %p format specifier rather than %x
The debug is printing the struct smt_header * address using
the %x format specifier. Fix it to use %p instead.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/fddi/skfp/srf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/fddi/skfp/srf.c b/drivers/net/fddi/skfp/srf.c index cc27dea..9956680 100644 --- a/drivers/net/fddi/skfp/srf.c +++ b/drivers/net/fddi/skfp/srf.c @@ -414,7 +414,7 @@ static void smt_send_srf(struct s_smc *smc) smt->smt_len = SMT_MAX_INFO_LEN - pcon.pc_len ; mb->sm_len = smt->smt_len + sizeof(struct smt_header) ; - DB_SMT("SRF: sending SRF at %x, len %d\n",smt,mb->sm_len) ; + DB_SMT("SRF: sending SRF at %p, len %d\n",smt,mb->sm_len) ; DB_SMT("SRF: state SR%d Threshold %d\n", smc->srf.sr_state,smc->srf.SRThreshold/TICKS_PER_SECOND) ; #ifdef DEBUG |