|
@@ -732,8 +732,8 @@ static int tcic_set_io_map(struct pcmcia_socket *sock, struct pccard_io_map *io)
|
|
|
u_short base, len, ioctl;
|
|
|
|
|
|
debug(1, "SetIOMap(%d, %d, %#2.2x, %d ns, "
|
|
|
- "%#x-%#x)\n", psock, io->map, io->flags,
|
|
|
- io->speed, io->start, io->stop);
|
|
|
+ "%#llx-%#llx)\n", psock, io->map, io->flags, io->speed,
|
|
|
+ (unsigned long long)io->start, (unsigned long long)io->stop);
|
|
|
if ((io->map > 1) || (io->start > 0xffff) || (io->stop > 0xffff) ||
|
|
|
(io->stop < io->start)) return -EINVAL;
|
|
|
tcic_setw(TCIC_ADDR+2, TCIC_ADR2_INDREG | (psock << TCIC_SS_SHFT));
|