drivers/nfc/pn544.c: fix min_t warnings

Fix these:

drivers/nfc/pn544.c: In function 'pn544_read':
drivers/nfc/pn544.c:356: warning: comparison of distinct pointer types lacks a cast
drivers/nfc/pn544.c:377: warning: comparison of distinct pointer types lacks a cast
drivers/nfc/pn544.c: In function 'pn544_write':
drivers/nfc/pn544.c:463: warning: comparison of distinct pointer types lacks a cast
drivers/nfc/pn544.c:485: warning: comparison of distinct pointer types lacks a cast

Cc: "Matti J. Aaltonen" <matti.j.aaltonen@nokia.com>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Andrew Morton and committed by Linus Torvalds e78bf5e6 8a335bc6

+1 -1
+1 -1
drivers/nfc/pn544.c
··· 69 69 struct mutex read_mutex; /* Serialize read_irq access */ 70 70 struct mutex mutex; /* Serialize info struct access */ 71 71 u8 *buf; 72 - unsigned int buflen; 72 + size_t buflen; 73 73 }; 74 74 75 75 static const char reg_vdd_io[] = "Vdd_IO";