Commit e44d4907 authored by Kees Cook's avatar Kees Cook Committed by Greg Kroah-Hartman

staging/comedi: Convert timers to use timer_setup()

In preparation for unconditionally passing the struct timer_list pointer
to all timer callbacks, switch to using the new timer_setup() and
from_timer() to pass the timer pointer explicitly. Adds pointer back to
comedi device from private struct.

Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: devel@driverdev.osuosl.org
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f67ffd61
...@@ -93,6 +93,7 @@ struct waveform_private { ...@@ -93,6 +93,7 @@ struct waveform_private {
unsigned int ai_scan_period; /* AI scan period in usec */ unsigned int ai_scan_period; /* AI scan period in usec */
unsigned int ai_convert_period; /* AI conversion period in usec */ unsigned int ai_convert_period; /* AI conversion period in usec */
struct timer_list ao_timer; /* timer for AO commands */ struct timer_list ao_timer; /* timer for AO commands */
struct comedi_device *dev; /* parent comedi device */
u64 ao_last_scan_time; /* time of previous AO scan in usec */ u64 ao_last_scan_time; /* time of previous AO scan in usec */
unsigned int ao_scan_period; /* AO scan period in usec */ unsigned int ao_scan_period; /* AO scan period in usec */
unsigned short ao_loopbacks[N_CHANS]; unsigned short ao_loopbacks[N_CHANS];
...@@ -201,10 +202,10 @@ static unsigned short fake_waveform(struct comedi_device *dev, ...@@ -201,10 +202,10 @@ static unsigned short fake_waveform(struct comedi_device *dev,
* It should run in the background; therefore it is scheduled by * It should run in the background; therefore it is scheduled by
* a timer mechanism. * a timer mechanism.
*/ */
static void waveform_ai_timer(unsigned long arg) static void waveform_ai_timer(struct timer_list *t)
{ {
struct comedi_device *dev = (struct comedi_device *)arg; struct waveform_private *devpriv = from_timer(devpriv, t, ai_timer);
struct waveform_private *devpriv = dev->private; struct comedi_device *dev = devpriv->dev;
struct comedi_subdevice *s = dev->read_subdev; struct comedi_subdevice *s = dev->read_subdev;
struct comedi_async *async = s->async; struct comedi_async *async = s->async;
struct comedi_cmd *cmd = &async->cmd; struct comedi_cmd *cmd = &async->cmd;
...@@ -438,10 +439,10 @@ static int waveform_ai_insn_read(struct comedi_device *dev, ...@@ -438,10 +439,10 @@ static int waveform_ai_insn_read(struct comedi_device *dev,
* This is the background routine to handle AO commands, scheduled by * This is the background routine to handle AO commands, scheduled by
* a timer mechanism. * a timer mechanism.
*/ */
static void waveform_ao_timer(unsigned long arg) static void waveform_ao_timer(struct timer_list *t)
{ {
struct comedi_device *dev = (struct comedi_device *)arg; struct waveform_private *devpriv = from_timer(devpriv, t, ao_timer);
struct waveform_private *devpriv = dev->private; struct comedi_device *dev = devpriv->dev;
struct comedi_subdevice *s = dev->write_subdev; struct comedi_subdevice *s = dev->write_subdev;
struct comedi_async *async = s->async; struct comedi_async *async = s->async;
struct comedi_cmd *cmd = &async->cmd; struct comedi_cmd *cmd = &async->cmd;
...@@ -686,8 +687,9 @@ static int waveform_common_attach(struct comedi_device *dev, ...@@ -686,8 +687,9 @@ static int waveform_common_attach(struct comedi_device *dev,
for (i = 0; i < s->n_chan; i++) for (i = 0; i < s->n_chan; i++)
devpriv->ao_loopbacks[i] = s->maxdata / 2; devpriv->ao_loopbacks[i] = s->maxdata / 2;
setup_timer(&devpriv->ai_timer, waveform_ai_timer, (unsigned long)dev); devpriv->dev = dev;
setup_timer(&devpriv->ao_timer, waveform_ao_timer, (unsigned long)dev); timer_setup(&devpriv->ai_timer, waveform_ai_timer, 0);
timer_setup(&devpriv->ao_timer, waveform_ao_timer, 0);
dev_info(dev->class_dev, dev_info(dev->class_dev,
"%s: %u microvolt, %u microsecond waveform attached\n", "%s: %u microvolt, %u microsecond waveform attached\n",
......
...@@ -440,6 +440,7 @@ static inline int timer_period(void) ...@@ -440,6 +440,7 @@ static inline int timer_period(void)
struct das16_private_struct { struct das16_private_struct {
struct comedi_isadma *dma; struct comedi_isadma *dma;
struct comedi_device *dev;
unsigned int clockbase; unsigned int clockbase;
unsigned int ctrl_reg; unsigned int ctrl_reg;
unsigned int divisor1; unsigned int divisor1;
...@@ -525,10 +526,10 @@ static void das16_interrupt(struct comedi_device *dev) ...@@ -525,10 +526,10 @@ static void das16_interrupt(struct comedi_device *dev)
comedi_handle_events(dev, s); comedi_handle_events(dev, s);
} }
static void das16_timer_interrupt(unsigned long arg) static void das16_timer_interrupt(struct timer_list *t)
{ {
struct comedi_device *dev = (struct comedi_device *)arg; struct das16_private_struct *devpriv = from_timer(devpriv, t, timer);
struct das16_private_struct *devpriv = dev->private; struct comedi_device *dev = devpriv->dev;
unsigned long flags; unsigned long flags;
das16_interrupt(dev); das16_interrupt(dev);
...@@ -934,8 +935,7 @@ static void das16_alloc_dma(struct comedi_device *dev, unsigned int dma_chan) ...@@ -934,8 +935,7 @@ static void das16_alloc_dma(struct comedi_device *dev, unsigned int dma_chan)
{ {
struct das16_private_struct *devpriv = dev->private; struct das16_private_struct *devpriv = dev->private;
setup_timer(&devpriv->timer, das16_timer_interrupt, timer_setup(&devpriv->timer, das16_timer_interrupt, 0);
(unsigned long)dev);
/* only DMA channels 3 and 1 are valid */ /* only DMA channels 3 and 1 are valid */
if (!(dma_chan == 1 || dma_chan == 3)) if (!(dma_chan == 1 || dma_chan == 3))
...@@ -1044,6 +1044,7 @@ static int das16_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -1044,6 +1044,7 @@ static int das16_attach(struct comedi_device *dev, struct comedi_devconfig *it)
devpriv = comedi_alloc_devpriv(dev, sizeof(*devpriv)); devpriv = comedi_alloc_devpriv(dev, sizeof(*devpriv));
if (!devpriv) if (!devpriv)
return -ENOMEM; return -ENOMEM;
devpriv->dev = dev;
if (board->size < 0x400) { if (board->size < 0x400) {
ret = comedi_request_region(dev, it->options[0], board->size); ret = comedi_request_region(dev, it->options[0], board->size);
......
...@@ -96,6 +96,7 @@ struct jr3_pci_poll_delay { ...@@ -96,6 +96,7 @@ struct jr3_pci_poll_delay {
struct jr3_pci_dev_private { struct jr3_pci_dev_private {
struct timer_list timer; struct timer_list timer;
struct comedi_device *dev;
}; };
union jr3_pci_single_range { union jr3_pci_single_range {
...@@ -585,10 +586,10 @@ jr3_pci_poll_subdevice(struct comedi_subdevice *s) ...@@ -585,10 +586,10 @@ jr3_pci_poll_subdevice(struct comedi_subdevice *s)
return result; return result;
} }
static void jr3_pci_poll_dev(unsigned long data) static void jr3_pci_poll_dev(struct timer_list *t)
{ {
struct comedi_device *dev = (struct comedi_device *)data; struct jr3_pci_dev_private *devpriv = from_timer(devpriv, t, timer);
struct jr3_pci_dev_private *devpriv = dev->private; struct comedi_device *dev = devpriv->dev;
struct jr3_pci_subdev_private *spriv; struct jr3_pci_subdev_private *spriv;
struct comedi_subdevice *s; struct comedi_subdevice *s;
unsigned long flags; unsigned long flags;
...@@ -770,7 +771,8 @@ static int jr3_pci_auto_attach(struct comedi_device *dev, ...@@ -770,7 +771,8 @@ static int jr3_pci_auto_attach(struct comedi_device *dev,
spriv->next_time_min = jiffies + msecs_to_jiffies(500); spriv->next_time_min = jiffies + msecs_to_jiffies(500);
} }
setup_timer(&devpriv->timer, jr3_pci_poll_dev, (unsigned long)dev); devpriv->dev = dev;
timer_setup(&devpriv->timer, jr3_pci_poll_dev, 0);
devpriv->timer.expires = jiffies + msecs_to_jiffies(1000); devpriv->timer.expires = jiffies + msecs_to_jiffies(1000);
add_timer(&devpriv->timer); add_timer(&devpriv->timer);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment