From fa949604baa6efd23e28108d8f51341c290eced3 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 31 Jan 2015 12:49:51 -0600 Subject: [PATCH] Remove reference to used variable --- drivers/sensors/adxl345.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/drivers/sensors/adxl345.h b/drivers/sensors/adxl345.h index e2a06cea96..64cb8d99ec 100644 --- a/drivers/sensors/adxl345.h +++ b/drivers/sensors/adxl345.h @@ -138,15 +138,6 @@ struct adxl345_dev_s struct work_s timeout; /* Supports timeout work */ struct adxl345_sample_s sample; /* Last sampled accelerometer data */ - - /* The following is a list if poll structures of threads waiting for - * driver events. The 'struct pollfd' reference for each open is also - * retained in the f_priv field of the 'struct file'. - */ - -#ifndef CONFIG_DISABLE_POLL - struct pollfd *fds[CONFIG_ADXL345_NPOLLWAITERS]; -#endif }; /********************************************************************************************