forked from Dniel97/segatools
amex/jvs.c: Tweak debug message prefix
This commit is contained in:
parent
a9c61ff156
commit
a2bcd575d6
18
amex/jvs.c
18
amex/jvs.c
@ -93,7 +93,7 @@ static HRESULT jvs_handle_open(struct irp *irp)
|
|||||||
return iohook_invoke_next(irp);
|
return iohook_invoke_next(irp);
|
||||||
}
|
}
|
||||||
|
|
||||||
dprintf("JVS Controller: Open device\n");
|
dprintf("JVS Port: Open device\n");
|
||||||
irp->fd = jvs_fd;
|
irp->fd = jvs_fd;
|
||||||
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
@ -101,7 +101,7 @@ static HRESULT jvs_handle_open(struct irp *irp)
|
|||||||
|
|
||||||
static HRESULT jvs_handle_close(struct irp *irp)
|
static HRESULT jvs_handle_close(struct irp *irp)
|
||||||
{
|
{
|
||||||
dprintf("JVS Controller: Close device\n");
|
dprintf("JVS Port: Close device\n");
|
||||||
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
@ -119,7 +119,7 @@ static HRESULT jvs_handle_ioctl(struct irp *irp)
|
|||||||
return jvs_ioctl_transact(irp);
|
return jvs_ioctl_transact(irp);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
dprintf("JVS Controller: Unknown ioctl %#x\n", irp->ioctl);
|
dprintf("JVS Port: Unknown ioctl %#x\n", irp->ioctl);
|
||||||
|
|
||||||
return HRESULT_FROM_WIN32(ERROR_INVALID_FUNCTION);
|
return HRESULT_FROM_WIN32(ERROR_INVALID_FUNCTION);
|
||||||
}
|
}
|
||||||
@ -131,7 +131,7 @@ static HRESULT jvs_ioctl_hello(struct irp *irp)
|
|||||||
|
|
||||||
// uuh fucked if i know
|
// uuh fucked if i know
|
||||||
|
|
||||||
dprintf("JVS Controller: Port startup (?)\n");
|
dprintf("JVS Port: Port startup (?)\n");
|
||||||
|
|
||||||
iobuf_write_8(&irp->read, 0);
|
iobuf_write_8(&irp->read, 0);
|
||||||
hr = iobuf_write_8(&irp->read, 0);
|
hr = iobuf_write_8(&irp->read, 0);
|
||||||
@ -148,14 +148,14 @@ static HRESULT jvs_ioctl_sense(struct irp *irp)
|
|||||||
sense = jvs_root->sense(jvs_root);
|
sense = jvs_root->sense(jvs_root);
|
||||||
|
|
||||||
if (sense) {
|
if (sense) {
|
||||||
dprintf("JVS Controller: Sense line 2.5 V (address unassigned)\n");
|
dprintf("JVS Port: Sense line 2.5 V (address unassigned)\n");
|
||||||
code = 3;
|
code = 3;
|
||||||
} else {
|
} else {
|
||||||
dprintf("JVS Controller: Sense line 0.0 V (address assigned)\n");
|
dprintf("JVS Port: Sense line 0.0 V (address assigned)\n");
|
||||||
code = 2;
|
code = 2;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
dprintf("JVS Controller: Sense line 5.0 V (no downstream PCB)\n");
|
dprintf("JVS Port: Sense line 5.0 V (no downstream PCB)\n");
|
||||||
code = 1;
|
code = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -165,14 +165,14 @@ static HRESULT jvs_ioctl_sense(struct irp *irp)
|
|||||||
static HRESULT jvs_ioctl_transact(struct irp *irp)
|
static HRESULT jvs_ioctl_transact(struct irp *irp)
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
dprintf("\nJVS Controller: Outbound frame:\n");
|
dprintf("\nJVS Port: Outbound frame:\n");
|
||||||
dump_const_iobuf(&irp->write);
|
dump_const_iobuf(&irp->write);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
jvs_bus_transact(jvs_root, irp->write.bytes, irp->write.nbytes, &irp->read);
|
jvs_bus_transact(jvs_root, irp->write.bytes, irp->write.nbytes, &irp->read);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
dprintf("JVS Controller: Inbound frame:\n");
|
dprintf("JVS Port: Inbound frame:\n");
|
||||||
dump_iobuf(&irp->read);
|
dump_iobuf(&irp->read);
|
||||||
dprintf("\n");
|
dprintf("\n");
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user