zephyr/drivers/pwm/pwm_pca9685.h
Tomasz Bursztyka e18fcbba5a device: Const-ify all device driver instance pointers
Now that device_api attribute is unmodified at runtime, as well as all
the other attributes, it is possible to switch all device driver
instance to be constant.

A coccinelle rule is used for this:

@r_const_dev_1
  disable optional_qualifier
@
@@
-struct device *
+const struct device *

@r_const_dev_2
 disable optional_qualifier
@
@@
-struct device * const
+const struct device *

Fixes #27399

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
2020-09-02 13:48:13 +02:00

50 lines
930 B
C

/*
* Copyright (c) 2015 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @file Header file for the PCA9685 PWM driver.
*/
#ifndef ZEPHYR_DRIVERS_PWM_PWM_PCA9685_H_
#define ZEPHYR_DRIVERS_PWM_PWM_PCA9685_H_
#include <drivers/gpio.h>
#include <drivers/i2c.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Initialization function for PCA9685
*
* @param dev Device struct
* @return 0 if successful, failed otherwise
*/
extern int pwm_pca9685_init(const struct device *dev);
/** Configuration data */
struct pwm_pca9685_config {
/** The master I2C device's name */
const char * const i2c_master_dev_name;
/** The slave address of the chip */
uint16_t i2c_slave_addr;
uint8_t stride[2];
};
/** Runtime driver data */
struct pwm_pca9685_drv_data {
/** Master I2C device */
const struct device *i2c_master;
};
#ifdef __cplusplus
}
#endif
#endif /* ZEPHYR_DRIVERS_PWM_PWM_PCA9685_H_ */