dect
/
linux-2.6
Archived
13
0
Fork 0

[media] ngene: Update for latest cxd2099

Modifications for latest cxd2099.

Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Oliver Endriss 2011-07-03 14:03:49 -03:00 committed by Mauro Carvalho Chehab
parent 9daf9bccb3
commit 3b2cfd6e1a
1 changed files with 8 additions and 1 deletions

View File

@ -1582,11 +1582,18 @@ static int init_channels(struct ngene *dev)
return 0;
}
static struct cxd2099_cfg cxd_cfg = {
.bitrate = 62000,
.adr = 0x40,
.polarity = 0,
.clock_mode = 0,
};
static void cxd_attach(struct ngene *dev)
{
struct ngene_ci *ci = &dev->ci;
ci->en = cxd2099_attach(0x40, dev, &dev->channel[0].i2c_adapter);
ci->en = cxd2099_attach(&cxd_cfg, dev, &dev->channel[0].i2c_adapter);
ci->dev = dev;
return;
}