diff options
author | Andy Walls <awalls@radix.net> | 2008-11-16 21:33:41 -0500 |
---|---|---|
committer | Andy Walls <awalls@radix.net> | 2008-11-16 21:33:41 -0500 |
commit | 41442c233ecb6016a8d6c73ff23002138488e42b (patch) | |
tree | 89918fc74deba9cd43bd29e75d896d48dbe22b07 /linux/drivers/media/video/cx18/cx18-av-core.h | |
parent | c01ba77a68ca36f759d9ff6f85edadd4de41cca1 (diff) | |
download | mediapointer-dvb-s2-41442c233ecb6016a8d6c73ff23002138488e42b.tar.gz mediapointer-dvb-s2-41442c233ecb6016a8d6c73ff23002138488e42b.tar.bz2 |
cx18: Streamline cx18-io[ch] wrappers and enforce MMIO retry strategy
From: Andy Walls <awalls@radix.net>
cx18: Streamline cx18-io[ch] wrappers and enforce MMIO retry strategy so that
write retries always occur and read retries never occur (as they never help).
Remove MMIO statistics logging to speed up MMIO accesses. Deprecate & ignore
retry_mmio and mmio_ndelay module parameters, to essentially force
retry_mmio=1 and mmio_ndelay=0.
Priority: normal
Signed-off-by: Andy Walls <awalls@radix.net>
Diffstat (limited to 'linux/drivers/media/video/cx18/cx18-av-core.h')
-rw-r--r-- | linux/drivers/media/video/cx18/cx18-av-core.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-av-core.h b/linux/drivers/media/video/cx18/cx18-av-core.h index a07988c6f..455761fce 100644 --- a/linux/drivers/media/video/cx18/cx18-av-core.h +++ b/linux/drivers/media/video/cx18/cx18-av-core.h @@ -307,7 +307,6 @@ int cx18_av_write4_expect(struct cx18 *cx, u16 addr, u32 value, u32 eval, u32 mask); u8 cx18_av_read(struct cx18 *cx, u16 addr); u32 cx18_av_read4(struct cx18 *cx, u16 addr); -u32 cx18_av_read4_noretry(struct cx18 *cx, u16 addr); int cx18_av_and_or(struct cx18 *cx, u16 addr, unsigned mask, u8 value); int cx18_av_and_or4(struct cx18 *cx, u16 addr, u32 mask, u32 value); int cx18_av_cmd(struct cx18 *cx, unsigned int cmd, void *arg); |