@@ -94,7 +94,7 @@ struct aht10_data {
94
94
unsigned int meas_size ;
95
95
};
96
96
97
- /**
97
+ /*
98
98
* aht10_init() - Initialize an AHT10/AHT20 chip
99
99
* @data: the data associated with this AHT10/AHT20 chip
100
100
* Return: 0 if successful, 1 if not
@@ -124,7 +124,7 @@ static int aht10_init(struct aht10_data *data)
124
124
return 0 ;
125
125
}
126
126
127
- /**
127
+ /*
128
128
* aht10_polltime_expired() - check if the minimum poll interval has
129
129
* expired
130
130
* @data: the data containing the time to compare
@@ -140,7 +140,7 @@ static int aht10_polltime_expired(struct aht10_data *data)
140
140
141
141
DECLARE_CRC8_TABLE (crc8_table );
142
142
143
- /**
143
+ /*
144
144
* crc8_check() - check crc of the sensor's measurements
145
145
* @raw_data: data frame received from sensor(including crc as the last byte)
146
146
* @count: size of the data frame
@@ -155,7 +155,7 @@ static int crc8_check(u8 *raw_data, int count)
155
155
return crc8 (crc8_table , raw_data , count , CRC8_INIT_VALUE );
156
156
}
157
157
158
- /**
158
+ /*
159
159
* aht10_read_values() - read and parse the raw data from the AHT10/AHT20
160
160
* @data: the struct aht10_data to use for the lock
161
161
* Return: 0 if successful, 1 if not
@@ -214,7 +214,7 @@ static int aht10_read_values(struct aht10_data *data)
214
214
return 0 ;
215
215
}
216
216
217
- /**
217
+ /*
218
218
* aht10_interval_write() - store the given minimum poll interval.
219
219
* Return: 0 on success, -EINVAL if a value lower than the
220
220
* AHT10_MIN_POLL_INTERVAL is given
@@ -226,7 +226,7 @@ static ssize_t aht10_interval_write(struct aht10_data *data,
226
226
return 0 ;
227
227
}
228
228
229
- /**
229
+ /*
230
230
* aht10_interval_read() - read the minimum poll interval
231
231
* in milliseconds
232
232
*/
@@ -237,7 +237,7 @@ static ssize_t aht10_interval_read(struct aht10_data *data,
237
237
return 0 ;
238
238
}
239
239
240
- /**
240
+ /*
241
241
* aht10_temperature1_read() - read the temperature in millidegrees
242
242
*/
243
243
static int aht10_temperature1_read (struct aht10_data * data , long * val )
@@ -252,7 +252,7 @@ static int aht10_temperature1_read(struct aht10_data *data, long *val)
252
252
return 0 ;
253
253
}
254
254
255
- /**
255
+ /*
256
256
* aht10_humidity1_read() - read the relative humidity in millipercent
257
257
*/
258
258
static int aht10_humidity1_read (struct aht10_data * data , long * val )
0 commit comments