aboutsummaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorDaniel Agar <daniel@agar.ca>2015-03-02 14:36:04 -0500
committerLorenz Meier <lm@inf.ethz.ch>2015-03-19 23:49:36 +0100
commitc2abb0f82ac23aab3295522ade4c255323191931 (patch)
treea87146edb8736e8f447e97eb6624b909aefe57c2 /src/drivers
parentc147424fe735d92c5271ba3b5bc830bb33fb6097 (diff)
downloadpx4-firmware-c2abb0f82ac23aab3295522ade4c255323191931.tar.gz
px4-firmware-c2abb0f82ac23aab3295522ade4c255323191931.tar.bz2
px4-firmware-c2abb0f82ac23aab3295522ade4c255323191931.zip
fix code style if trivial one line difference
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/boards/aerocore/board_config.h2
-rw-r--r--src/drivers/boards/px4fmu-v1/board_config.h2
-rw-r--r--src/drivers/boards/px4fmu-v2/board_config.h2
-rw-r--r--src/drivers/boards/px4io-v1/px4io_init.c2
-rw-r--r--src/drivers/boards/px4io-v2/px4iov2_init.c2
-rw-r--r--src/drivers/drv_airspeed.h2
-rw-r--r--src/drivers/drv_blinkm.h2
-rw-r--r--src/drivers/drv_orb_dev.h2
-rw-r--r--src/drivers/drv_oreoled.h2
-rw-r--r--src/drivers/drv_pwm_input.h2
-rw-r--r--src/drivers/hmc5883/hmc5883.h2
-rw-r--r--src/drivers/ms5611/ms5611.h2
12 files changed, 12 insertions, 12 deletions
diff --git a/src/drivers/boards/aerocore/board_config.h b/src/drivers/boards/aerocore/board_config.h
index 776a2071e..19518d73d 100644
--- a/src/drivers/boards/aerocore/board_config.h
+++ b/src/drivers/boards/aerocore/board_config.h
@@ -54,7 +54,7 @@ __BEGIN_DECLS
#include <arch/board/board.h>
#define UDID_START 0x1FFF7A10
-
+
/****************************************************************************************************
* Definitions
****************************************************************************************************/
diff --git a/src/drivers/boards/px4fmu-v1/board_config.h b/src/drivers/boards/px4fmu-v1/board_config.h
index 882ec6aa2..17fa9c542 100644
--- a/src/drivers/boards/px4fmu-v1/board_config.h
+++ b/src/drivers/boards/px4fmu-v1/board_config.h
@@ -52,7 +52,7 @@ __BEGIN_DECLS
/* these headers are not C++ safe */
#include <stm32.h>
#include <arch/board/board.h>
-
+
/****************************************************************************************************
* Definitions
****************************************************************************************************/
diff --git a/src/drivers/boards/px4fmu-v2/board_config.h b/src/drivers/boards/px4fmu-v2/board_config.h
index 273af1023..6188e29ae 100644
--- a/src/drivers/boards/px4fmu-v2/board_config.h
+++ b/src/drivers/boards/px4fmu-v2/board_config.h
@@ -54,7 +54,7 @@ __BEGIN_DECLS
#include <arch/board/board.h>
#define UDID_START 0x1FFF7A10
-
+
/****************************************************************************************************
* Definitions
****************************************************************************************************/
diff --git a/src/drivers/boards/px4io-v1/px4io_init.c b/src/drivers/boards/px4io-v1/px4io_init.c
index 8292da9e1..5a02a9716 100644
--- a/src/drivers/boards/px4io-v1/px4io_init.c
+++ b/src/drivers/boards/px4io-v1/px4io_init.c
@@ -87,7 +87,7 @@ __EXPORT void stm32_boardinitialize(void)
stm32_configgpio(GPIO_RELAY1_EN);
stm32_configgpio(GPIO_RELAY2_EN);
- /* turn off - all leds are active low */
+ /* turn off - all leds are active low */
stm32_gpiowrite(GPIO_LED1, true);
stm32_gpiowrite(GPIO_LED2, true);
stm32_gpiowrite(GPIO_LED3, true);
diff --git a/src/drivers/boards/px4io-v2/px4iov2_init.c b/src/drivers/boards/px4io-v2/px4iov2_init.c
index 5c3343ccc..fd7eb33c3 100644
--- a/src/drivers/boards/px4io-v2/px4iov2_init.c
+++ b/src/drivers/boards/px4io-v2/px4iov2_init.c
@@ -126,7 +126,7 @@ __EXPORT void stm32_boardinitialize(void)
stm32_configgpio(GPIO_SBUS_INPUT); /* xxx alternate function */
stm32_configgpio(GPIO_SBUS_OUTPUT);
-
+
/* sbus output enable is active low - disable it by default */
stm32_gpiowrite(GPIO_SBUS_OENABLE, true);
stm32_configgpio(GPIO_SBUS_OENABLE);
diff --git a/src/drivers/drv_airspeed.h b/src/drivers/drv_airspeed.h
index 2ff91d5d0..fddef3626 100644
--- a/src/drivers/drv_airspeed.h
+++ b/src/drivers/drv_airspeed.h
@@ -35,7 +35,7 @@
* @file drv_airspeed.h
*
* Airspeed driver interface.
- *
+ *
* @author Simon Wilks
*/
diff --git a/src/drivers/drv_blinkm.h b/src/drivers/drv_blinkm.h
index 7258c9e84..8568436d3 100644
--- a/src/drivers/drv_blinkm.h
+++ b/src/drivers/drv_blinkm.h
@@ -60,7 +60,7 @@
/** play the numbered script in (arg), repeating forever */
#define BLINKM_PLAY_SCRIPT _BLINKMIOC(2)
-/**
+/**
* Set the user script; (arg) is a pointer to an array of script lines,
* where each line is an array of four bytes giving <duration>, <command>, arg[0-2]
*
diff --git a/src/drivers/drv_orb_dev.h b/src/drivers/drv_orb_dev.h
index e0b16fa5c..c1db6b534 100644
--- a/src/drivers/drv_orb_dev.h
+++ b/src/drivers/drv_orb_dev.h
@@ -36,7 +36,7 @@
/**
* @file drv_orb_dev.h
- *
+ *
* uORB published object driver.
*/
diff --git a/src/drivers/drv_oreoled.h b/src/drivers/drv_oreoled.h
index 0dcb10a7b..00e368318 100644
--- a/src/drivers/drv_oreoled.h
+++ b/src/drivers/drv_oreoled.h
@@ -117,7 +117,7 @@ enum oreoled_macro {
OREOLED_PARAM_MACRO_ENUM_COUNT
};
-/*
+/*
structure passed to OREOLED_SET_RGB ioctl()
Note that the driver scales the brightness to 0 to 255, regardless
of the hardware scaling
diff --git a/src/drivers/drv_pwm_input.h b/src/drivers/drv_pwm_input.h
index 778d9fcf5..47b84e6e1 100644
--- a/src/drivers/drv_pwm_input.h
+++ b/src/drivers/drv_pwm_input.h
@@ -46,6 +46,6 @@ __BEGIN_DECLS
/*
* Initialise the timer
*/
-__EXPORT extern int pwm_input_main(int argc, char * argv[]);
+__EXPORT extern int pwm_input_main(int argc, char *argv[]);
__END_DECLS
diff --git a/src/drivers/hmc5883/hmc5883.h b/src/drivers/hmc5883/hmc5883.h
index e91e91fc0..9607fe614 100644
--- a/src/drivers/hmc5883/hmc5883.h
+++ b/src/drivers/hmc5883/hmc5883.h
@@ -50,4 +50,4 @@
/* interface factories */
extern device::Device *HMC5883_SPI_interface(int bus) weak_function;
extern device::Device *HMC5883_I2C_interface(int bus) weak_function;
-typedef device::Device* (*HMC5883_constructor)(int);
+typedef device::Device *(*HMC5883_constructor)(int);
diff --git a/src/drivers/ms5611/ms5611.h b/src/drivers/ms5611/ms5611.h
index c8211b8dd..c946e38cb 100644
--- a/src/drivers/ms5611/ms5611.h
+++ b/src/drivers/ms5611/ms5611.h
@@ -82,4 +82,4 @@ extern bool crc4(uint16_t *n_prom);
/* interface factories */
extern device::Device *MS5611_spi_interface(ms5611::prom_u &prom_buf, uint8_t busnum) weak_function;
extern device::Device *MS5611_i2c_interface(ms5611::prom_u &prom_buf, uint8_t busnum) weak_function;
-typedef device::Device* (*MS5611_constructor)(ms5611::prom_u &prom_buf, uint8_t busnum);
+typedef device::Device *(*MS5611_constructor)(ms5611::prom_u &prom_buf, uint8_t busnum);