Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219649
b: refs/heads/master
c: 07e6229
h: refs/heads/master
i:
  219647: 991ee1a
v: v3
  • Loading branch information
Manuel Stahl authored and Greg Kroah-Hartman committed Aug 31, 2010
1 parent 1daab9f commit 0718755
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ffcab07a7479e10eddda6c4c47f69834e2971716
refs/heads/master: 07e6229e42e4d679cdbaada8f7966491c69710e7
19 changes: 10 additions & 9 deletions trunk/drivers/staging/iio/accel/lis3l02dq_ring.c
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ int lis3l02dq_configure_ring(struct iio_dev *indio_dev)
{
int ret;
struct iio_sw_ring_helper_state *h = iio_dev_get_devdata(indio_dev);

struct iio_ring_buffer *ring;
INIT_WORK(&h->work_trigger_to_ring, lis3l02dq_trigger_bh_to_ring);
/* Set default scan mode */
h->get_ring_element = &lis3l02dq_get_ring_element;
Expand All @@ -490,17 +490,18 @@ int lis3l02dq_configure_ring(struct iio_dev *indio_dev)

indio_dev->scan_el_attrs = &lis3l02dq_scan_el_group;

indio_dev->ring = iio_sw_rb_allocate(indio_dev);
if (!indio_dev->ring)
ring = iio_sw_rb_allocate(indio_dev);
if (!ring)
return -ENOMEM;

indio_dev->ring = ring;
/* Effectively select the ring buffer implementation */
iio_ring_sw_register_funcs(&indio_dev->ring->access);
indio_dev->ring->bpe = 2;
indio_dev->ring->preenable = &iio_sw_ring_preenable;
indio_dev->ring->postenable = &iio_triggered_ring_postenable;
indio_dev->ring->predisable = &iio_triggered_ring_predisable;
indio_dev->ring->owner = THIS_MODULE;
iio_ring_sw_register_funcs(&ring->access);
ring->bpe = 2;
ring->preenable = &iio_sw_ring_preenable;
ring->postenable = &iio_triggered_ring_postenable;
ring->predisable = &iio_triggered_ring_predisable;
ring->owner = THIS_MODULE;

ret = iio_alloc_pollfunc(indio_dev, NULL, &lis3l02dq_poll_func_th);
if (ret)
Expand Down

0 comments on commit 0718755

Please sign in to comment.