mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-04 18:18:54 +00:00
V4L/DVB (11075): au0828: make register debug lines easier to read
Make it a little easier to read the debug messages for register read/write operations Signed-off-by: Devin Heitmueller <dheitmueller@linuxtv.org> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
dc8685b565
commit
b80f770a98
@ -51,13 +51,13 @@ static int recv_control_msg(struct au0828_dev *dev, u16 request, u32 value,
|
|||||||
u32 au0828_readreg(struct au0828_dev *dev, u16 reg)
|
u32 au0828_readreg(struct au0828_dev *dev, u16 reg)
|
||||||
{
|
{
|
||||||
recv_control_msg(dev, CMD_REQUEST_IN, 0, reg, dev->ctrlmsg, 1);
|
recv_control_msg(dev, CMD_REQUEST_IN, 0, reg, dev->ctrlmsg, 1);
|
||||||
dprintk(8, "%s(0x%x) = 0x%x\n", __func__, reg, dev->ctrlmsg[0]);
|
dprintk(8, "%s(0x%04x) = 0x%02x\n", __func__, reg, dev->ctrlmsg[0]);
|
||||||
return dev->ctrlmsg[0];
|
return dev->ctrlmsg[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 au0828_writereg(struct au0828_dev *dev, u16 reg, u32 val)
|
u32 au0828_writereg(struct au0828_dev *dev, u16 reg, u32 val)
|
||||||
{
|
{
|
||||||
dprintk(8, "%s(0x%x, 0x%x)\n", __func__, reg, val);
|
dprintk(8, "%s(0x%04x, 0x%02x)\n", __func__, reg, val);
|
||||||
return send_control_msg(dev, CMD_REQUEST_OUT, val, reg,
|
return send_control_msg(dev, CMD_REQUEST_OUT, val, reg,
|
||||||
dev->ctrlmsg, 0);
|
dev->ctrlmsg, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user