Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1447086
| From | Quentin Schulz <quentin.schulz@free-electrons.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/5] mfd: sunxi-gpadc-mfd: add buffer structure |
| Date | 2016-07-20 10:40 +0200 |
| Message-ID | <rWVcS-7sY-15@gated-at.bofh.it> (permalink) |
| References | <rWVcR-7sY-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
This adds a buffer structure for files including the sunxi-gpadc-mfd
header. This structure has a buffer of 32 u32 values to store data from the
FIFO of the GPADC of Allwinner SoCs. A buff_size is provided in case the
buffer is not full.
Signed-off-by: Quentin Schulz <quentin.schulz@free-electrons.com>
---
include/linux/mfd/sunxi-gpadc-mfd.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/include/linux/mfd/sunxi-gpadc-mfd.h b/include/linux/mfd/sunxi-gpadc-mfd.h
index 7155845..f658299 100644
--- a/include/linux/mfd/sunxi-gpadc-mfd.h
+++ b/include/linux/mfd/sunxi-gpadc-mfd.h
@@ -20,4 +20,9 @@ struct sunxi_gpadc_mfd_dev {
void __iomem *regs;
};
+struct sunxi_gpadc_buffer {
+ u32 buffer[32];
+ unsigned int buff_size;
+};
+
#endif
--
2.5.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 2/5] mfd: sunxi-gpadc-mfd: add buffer structure Quentin Schulz <quentin.schulz@free-electrons.com> - 2016-07-20 10:40 +0200 Re: [PATCH 2/5] mfd: sunxi-gpadc-mfd: add buffer structure Jonathan Cameron <jic23@kernel.org> - 2016-07-24 12:40 +0200
csiph-web