coding style: cannot put parameter in function defined to have no parameter. 08/160408/1
authorSegwon <segwon.han@samsung.com>
Thu, 16 Nov 2017 05:19:19 +0000 (14:19 +0900)
committerSegwon <segwon.han@samsung.com>
Thu, 16 Nov 2017 05:21:21 +0000 (14:21 +0900)
 - function() -> function(void)

Signed-off-by: Segwon <segwon.han@samsung.com>
Change-Id: I896916b02f45bdb84ed8120b3fb7273677ace9e1

15 files changed:
include/gdbus/peripheral_gdbus_gpio.h
include/gdbus/peripheral_gdbus_i2c.h
include/gdbus/peripheral_gdbus_pwm.h
include/gdbus/peripheral_gdbus_spi.h
include/gdbus/peripheral_gdbus_uart.h
src/gdbus/peripheral_gdbus_gpio.c
src/gdbus/peripheral_gdbus_i2c.c
src/gdbus/peripheral_gdbus_pwm.c
src/gdbus/peripheral_gdbus_spi.c
src/gdbus/peripheral_gdbus_uart.c
src/peripheral_gpio.c
src/peripheral_i2c.c
src/peripheral_pwm.c
src/peripheral_spi.c
src/peripheral_uart.c

index 1ffe2142536bb5fd7ad9b356822492c6b68c4c97..9402a0bfcf49f3fb0fcc7b25108a23c841dc7bb6 100644 (file)
@@ -20,6 +20,6 @@
 #include "peripheral_gdbus_common.h"
 
 int peripheral_gdbus_gpio_open(peripheral_gpio_h gpio);
-int peripheral_gdbus_gpio_close();
+int peripheral_gdbus_gpio_close(void);
 
 #endif /* __PERIPHERAL_GDBUS_GPIO_H__ */
index 9d9f9a5324f05c135f8474d0264ea3d9fc257651..099da4e05bed0a00fcd134895d4c287fdc75f23b 100644 (file)
@@ -20,6 +20,6 @@
 #include "peripheral_gdbus_common.h"
 
 int peripheral_gdbus_i2c_open(peripheral_i2c_h i2c, int bus, int address);
-int peripheral_gdbus_i2c_close();
+int peripheral_gdbus_i2c_close(void);
 
 #endif /* __PERIPHERAL_GDBUS_I2C_H__ */
index c0764c61705a17988c3ab59d4cf2a5e7efddbc83..e5c26c81eb823d328d859377a7314a37fb9ec348 100644 (file)
@@ -20,6 +20,6 @@
 #include "peripheral_gdbus_common.h"
 
 int peripheral_gdbus_pwm_open(peripheral_pwm_h pwm, int chip, int pin);
-int peripheral_gdbus_pwm_close();
+int peripheral_gdbus_pwm_close(void);
 
 #endif /* __PERIPHERAL_GDBUS_PWM_H__ */
index 6f4aaa328313c42ed9dcb88bc18f429768061e77..a828c10f6ce6b35aa0cb4a2bb0a361298cf33659 100644 (file)
@@ -20,6 +20,6 @@
 #include "peripheral_gdbus_common.h"
 
 int peripheral_gdbus_spi_open(peripheral_spi_h spi, int bus, int cs);
-int peripheral_gdbus_spi_close();
+int peripheral_gdbus_spi_close(void);
 
 #endif /* __PERIPHERAL_GDBUS_SPI_H_ */
index 048eed52ea28fed928b4aa49f1c0bf87b2c58904..fc58ee8fbdc0584860ac89216f77ce5bb1571004 100644 (file)
@@ -20,6 +20,6 @@
 #include "peripheral_gdbus_common.h"
 
 int peripheral_gdbus_uart_open(peripheral_uart_h uart, int port);
-int peripheral_gdbus_uart_close();
+int peripheral_gdbus_uart_close(void);
 
 #endif /* __PERIPHERAL_GDBUS_UART_H_ */
index c935a4c5cc1628f4716b29583c517ea22f20384c..2f2ead6af16fb46cdeaf356f868c662f0fa8b3c1 100644 (file)
@@ -22,7 +22,7 @@
 
 static PeripheralIoGdbusGpio *gpio_proxy = NULL;
 
-static int __gpio_proxy_init()
+static int __gpio_proxy_init(void)
 {
        GError *error = NULL;
 
@@ -49,7 +49,7 @@ static int __gpio_proxy_init()
        return PERIPHERAL_ERROR_NONE;
 }
 
-static int __gpio_proxy_deinit()
+static int __gpio_proxy_deinit(void)
 {
        if (gpio_proxy == NULL) {
                _E("Gpio proxy is NULL");
@@ -117,7 +117,7 @@ int peripheral_gdbus_gpio_open(peripheral_gpio_h gpio)
        return ret;
 }
 
-int peripheral_gdbus_gpio_close()
+int peripheral_gdbus_gpio_close(void)
 {
        int ret = __gpio_proxy_deinit();
        return ret;
index cc5f30020665d74c4a741f9ccdd5360bf2cd8510..0300fb815406b3ae369c1d67865a8d60376ae6c8 100644 (file)
@@ -20,7 +20,7 @@
 
 static PeripheralIoGdbusI2c *i2c_proxy = NULL;
 
-static int __i2c_proxy_init()
+static int __i2c_proxy_init(void)
 {
        GError *error = NULL;
 
@@ -47,7 +47,7 @@ static int __i2c_proxy_init()
        return PERIPHERAL_ERROR_NONE;
 }
 
-static int __i2c_proxy_deinit()
+static int __i2c_proxy_deinit(void)
 {
        if (i2c_proxy == NULL) {
                _E("I2c proxy is NULL");
@@ -101,7 +101,7 @@ int peripheral_gdbus_i2c_open(peripheral_i2c_h i2c, int bus, int address)
        return ret;
 }
 
-int peripheral_gdbus_i2c_close()
+int peripheral_gdbus_i2c_close(void)
 {
        int ret = __i2c_proxy_deinit();
        return ret;
index 4c1d9166169df70ccf91831db63bdcfed123d6c0..1274744f1591fc2475dffa02aa0a7e33e2502fe2 100644 (file)
@@ -23,7 +23,7 @@
 
 static PeripheralIoGdbusPwm *pwm_proxy = NULL;
 
-static int __pwm_proxy_init()
+static int __pwm_proxy_init(void)
 {
        GError *error = NULL;
 
@@ -50,7 +50,7 @@ static int __pwm_proxy_init()
        return PERIPHERAL_ERROR_NONE;
 }
 
-static int __pwm_proxy_deinit()
+static int __pwm_proxy_deinit(void)
 {
        if (pwm_proxy == NULL) {
                _E("Pwm proxy is NULL");
@@ -126,7 +126,7 @@ int peripheral_gdbus_pwm_open(peripheral_pwm_h pwm, int chip, int pin)
        return ret;
 }
 
-int peripheral_gdbus_pwm_close()
+int peripheral_gdbus_pwm_close(void)
 {
        int ret = __pwm_proxy_deinit();
        return ret;
index b0653e4adec63e9adc73d9d59bb30a9850e8893c..9cdb0e8aea3ae9a3e0ccc19d3c7e6a90dd14e664 100644 (file)
@@ -20,7 +20,7 @@
 
 static PeripheralIoGdbusSpi *spi_proxy = NULL;
 
-static int __spi_proxy_init()
+static int __spi_proxy_init(void)
 {
        GError *error = NULL;
 
@@ -47,7 +47,7 @@ static int __spi_proxy_init()
        return PERIPHERAL_ERROR_NONE;
 }
 
-static int __spi_proxy_deinit()
+static int __spi_proxy_deinit(void)
 {
        if (spi_proxy == NULL) {
                _E("Spi proxy is NULL");
@@ -102,7 +102,7 @@ int peripheral_gdbus_spi_open(peripheral_spi_h spi, int bus, int cs)
        return ret;
 }
 
-int peripheral_gdbus_spi_close()
+int peripheral_gdbus_spi_close(void)
 {
        int ret = __spi_proxy_deinit();
        return ret;
index a15e566e10715815fcd3ca567af9bd7b1eb6622f..539ccf61c6725dcb2e4b2d9a0507e41019aafe07 100644 (file)
@@ -20,7 +20,7 @@
 
 static PeripheralIoGdbusUart *uart_proxy = NULL;
 
-static int __uart_proxy_init()
+static int __uart_proxy_init(void)
 {
        GError *error = NULL;
 
@@ -47,7 +47,7 @@ static int __uart_proxy_init()
        return PERIPHERAL_ERROR_NONE;
 }
 
-static int __uart_proxy_deinit()
+static int __uart_proxy_deinit(void)
 {
        if (uart_proxy == NULL) {
                _E("Uart proxy is NULL");
@@ -101,7 +101,7 @@ int peripheral_gdbus_uart_open(peripheral_uart_h uart, int port)
        return ret;
 }
 
-int peripheral_gdbus_uart_close()
+int peripheral_gdbus_uart_close(void)
 {
        int ret = __uart_proxy_deinit();
        return ret;
index 1333122c0686705b93c96ea2bee2587b037bd6aa..b6ea462c12be6f6559b2ece50fcd11c4cf11e6f4 100644 (file)
@@ -30,7 +30,7 @@
 
 static int gpio_feature = GPIO_FEATURE_UNKNOWN;
 
-static bool __is_feature_supported()
+static bool __is_feature_supported(void)
 {
        int ret = SYSTEM_INFO_ERROR_NONE;
        bool feature = false;
index 44d6052a83e0eff648b35697590907c43423b047..f3a8c5a9de25dfa4a04e325e4dd4a62632f86852 100644 (file)
@@ -40,7 +40,7 @@
 
 static int i2c_feature = I2C_FEATURE_UNKNOWN;
 
-static bool __is_feature_supported()
+static bool __is_feature_supported(void)
 {
        int ret = SYSTEM_INFO_ERROR_NONE;
        bool feature = false;
index 12e6fc2b6ac42b474c9f390aa29d6f7907fce70e..f418ac53b5aca454f6b0d89981bea9308ac967a9 100644 (file)
@@ -30,7 +30,7 @@
 
 static int pwm_feature = PWM_FEATURE_UNKNOWN;
 
-static bool __is_feature_supported()
+static bool __is_feature_supported(void)
 {
        int ret = SYSTEM_INFO_ERROR_NONE;
        bool feature = false;
index 9b25a2ee953d40dec5eec74f61bdefd83ace36fc..862e4d904e78d22082f8ac7b42121d335a0dbbb9 100644 (file)
@@ -30,7 +30,7 @@
 
 static int spi_feature = SPI_FEATURE_UNKNOWN;
 
-static bool __is_feature_supported()
+static bool __is_feature_supported(void)
 {
        int ret = SYSTEM_INFO_ERROR_NONE;
        bool feature = false;
index b18ccff4ae80f746d75d4ef7fd4c2d8475f6fe6c..988dd38dfd92279483d9ac8ee0cea7ec4158a7fb 100644 (file)
@@ -30,7 +30,7 @@
 
 static int uart_feature = UART_FEATURE_UNKNOWN;
 
-static bool __is_feature_supported()
+static bool __is_feature_supported(void)
 {
        int ret = SYSTEM_INFO_ERROR_NONE;
        bool feature = false;