Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compile fixes for xcomm_zynq #15

Merged
merged 3 commits into from
Mar 18, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
drivers/iio: fix st_pressure_buffer
Fix error introduced in commit eee97d1

Signed-off-by: Matthew Fornero <[email protected]>
  • Loading branch information
Matthew Fornero committed Mar 17, 2016
commit 0b505cbd7e4f58e239869a347840dc83d14ac831
2 changes: 1 addition & 1 deletion drivers/iio/pressure/st_pressure_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static int st_press_buffer_predisable(struct iio_dev *indio_dev)

err = st_sensors_set_enable(indio_dev, false);

kfree(pdata->buffer_data);
kfree(press_data->buffer_data);
return err;
}

Expand Down