From c4a842a78c778e7c15cd3f78ae354e4d21a85ae9 Mon Sep 17 00:00:00 2001 From: Yilun Lin Date: Sat, 8 Sep 2018 00:06:09 +0800 Subject: type: Rename vector_3_t to intv3_t. Naming of many vector types and matrix types are not clear enough. For example, we have: vector_3_t, which is a vector of three int. vec3_t, which is a vector of three float. size4_t, which is a vector of four size_t. mat33_t, which is a 3x3 matrix of float. matrix_3x3_t, which is a 3x3 matrix of fixed point. Besides, we have types like int8_t, uint16_t types. To clearly distinguished types, the CL propose to, For vector types, naming should be `$type + 'v' + $num + '_t'`: vector_3_t becomes intv3_t vec3_t becomes floatv3_t vector 4 of uint16_t becomes uint16v4_t (which doesn't exist yet) For matrix types, naming should be `mat$N$N_` + $type + '_t', where $N is the matrix size: matrix_3x3_t becomes mat33_fp_t # fp: fixed point mat33_t becomes mat33_float_t TEST=make buildall -j BUG=b:114662791 Change-Id: I865aa3ecbab6cb97f8585a081a679adf00febe1d Signed-off-by: Yilun Lin Reviewed-on: https://chromium-review.googlesource.com/1215442 Commit-Ready: Yilun Lin Tested-by: Yilun Lin Reviewed-by: Nicolas Boichat --- driver/accel_bma2x2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'driver/accel_bma2x2.c') diff --git a/driver/accel_bma2x2.c b/driver/accel_bma2x2.c index 48e38fc14d..c1e9eb4d63 100644 --- a/driver/accel_bma2x2.c +++ b/driver/accel_bma2x2.c @@ -153,7 +153,7 @@ static int get_offset(const struct motion_sensor_t *s, int16_t *offset, return EC_SUCCESS; } -static int read(const struct motion_sensor_t *s, vector_3_t v) +static int read(const struct motion_sensor_t *s, intv3_t v) { uint8_t acc[6]; int ret, i; -- cgit v1.2.1