diff options
author | Andy Walls <awalls@radix.net> | 2009-04-13 21:22:40 -0400 |
---|---|---|
committer | Andy Walls <awalls@radix.net> | 2009-04-13 21:22:40 -0400 |
commit | dc85976d603c70ff9a78f6a02c1c412b87fd50d6 (patch) | |
tree | 6c81bd5f163a68e7b02e4341159435334deabf27 /linux/drivers/media/video/cx18/cx18-mailbox.h | |
parent | 93f7a7d9cca47ccddea3b8d636fba2a193ff589c (diff) | |
download | mediapointer-dvb-s2-dc85976d603c70ff9a78f6a02c1c412b87fd50d6.tar.gz mediapointer-dvb-s2-dc85976d603c70ff9a78f6a02c1c412b87fd50d6.tar.bz2 |
cx18: Rename the work queue to "in_work_queue"
From: Andy Walls <awalls@radix.net>
Rename the work queue to "in_work_queue" to indicate it is handling
incoming mailbox commands. This is preparation for adding a work queue
for handling deferrable outgoing mailbox commands.
Priority: normal
Signed-off-by: Andy Walls <awalls@radix.net>
Diffstat (limited to 'linux/drivers/media/video/cx18/cx18-mailbox.h')
-rw-r--r-- | linux/drivers/media/video/cx18/cx18-mailbox.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-mailbox.h b/linux/drivers/media/video/cx18/cx18-mailbox.h index a667f1ae4..4bd0ba57f 100644 --- a/linux/drivers/media/video/cx18/cx18-mailbox.h +++ b/linux/drivers/media/video/cx18/cx18-mailbox.h @@ -96,9 +96,9 @@ int cx18_api_func(void *priv, u32 cmd, int in, int out, void cx18_api_epu_cmd_irq(struct cx18 *cx, int rpu); #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 20) -void cx18_epu_work_handler(struct work_struct *work); +void cx18_in_work_handler(struct work_struct *work); #else -void cx18_epu_work_handler(void *arg); +void cx18_in_work_handler(void *arg); #endif #endif |