Remove non-ascii & unprintable characters
These non-ascii & unprintable characters aren't needed. Change-Id: I129f729f66d6a692de729d76971f7deb7a19c254 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/15977 Tested-by: build bot (Jenkins) Reviewed-by: Omar Pakker Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
committed by
Stefan Reinauer
parent
bb9722bd77
commit
0cd338e6e4
@@ -44,7 +44,7 @@ enum registers {
|
||||
* in one transaction.
|
||||
* These return the number of bytes read/written, or an error code. In this
|
||||
* case, they return 1 on success, or an error code otherwise. This is done to
|
||||
* work with I²C drivers that return either 0 on success or the number of bytes
|
||||
* work with I2C drivers that return either 0 on success or the number of bytes
|
||||
* actually transferred.
|
||||
*/
|
||||
static int axp209_read(u8 bus, u8 reg, u8 *val)
|
||||
@@ -62,9 +62,9 @@ static int axp209_write(u8 bus, u8 reg, u8 val)
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Identify and initialize an AXP209 on the I²C bus
|
||||
* \brief Identify and initialize an AXP209 on the I2C bus
|
||||
*
|
||||
* @param[in] bus I²C bus to which the AXP209 is connected
|
||||
* @param[in] bus I2C bus to which the AXP209 is connected
|
||||
* @return CB_SUCCES on if an AXP209 is found, or an error code otherwise.
|
||||
*/
|
||||
enum cb_err axp209_init(u8 bus)
|
||||
@@ -91,7 +91,7 @@ enum cb_err axp209_init(u8 bus)
|
||||
* Valid values are between 700mV and 2275mV
|
||||
*
|
||||
* @param[in] millivolts voltage in mV units.
|
||||
* @param[in] bus I²C bus to which the AXP209 is connected
|
||||
* @param[in] bus I2C bus to which the AXP209 is connected
|
||||
* @return CB_SUCCES on success,
|
||||
* CB_ERR_ARG if voltage is out of range, or an error code otherwise.
|
||||
*/
|
||||
@@ -118,7 +118,7 @@ enum cb_err axp209_set_dcdc2_voltage(u8 bus, u16 millivolts)
|
||||
* Valid values are between 700mV and 3500mV
|
||||
*
|
||||
* @param[in] millivolts voltage in mV units.
|
||||
* @param[in] bus I²C bus to which the AXP209 is connected
|
||||
* @param[in] bus I2C bus to which the AXP209 is connected
|
||||
* @return CB_SUCCES on success,
|
||||
* CB_ERR_ARG if voltage is out of range, or an error code otherwise.
|
||||
*/
|
||||
@@ -145,7 +145,7 @@ enum cb_err axp209_set_dcdc3_voltage(u8 bus, u16 millivolts)
|
||||
* Valid values are between 700mV and 3300mV
|
||||
*
|
||||
* @param[in] millivolts voltage in mV units.
|
||||
* @param[in] bus I²C bus to which the AXP209 is connected
|
||||
* @param[in] bus I2C bus to which the AXP209 is connected
|
||||
* @return CB_SUCCES on success,
|
||||
* CB_ERR_ARG if voltage is out of range, or an error code otherwise.
|
||||
*/
|
||||
@@ -179,7 +179,7 @@ enum cb_err axp209_set_ldo2_voltage(u8 bus, u16 millivolts)
|
||||
* 2250mV, but hardware samples go as high as 3500mV.
|
||||
*
|
||||
* @param[in] millivolts voltage in mV units.
|
||||
* @param[in] bus I²C bus to which the AXP209 is connected
|
||||
* @param[in] bus I2C bus to which the AXP209 is connected
|
||||
* @return CB_SUCCES on success,
|
||||
* CB_ERR_ARG if voltage is out of range, or an error code otherwise.
|
||||
*/
|
||||
@@ -207,7 +207,7 @@ enum cb_err axp209_set_ldo3_voltage(u8 bus, u16 millivolts)
|
||||
* Valid values are between 1250V and 3300mV
|
||||
*
|
||||
* @param[in] millivolts voltage in mV units.
|
||||
* @param[in] bus I²C bus to which the AXP209 is connected
|
||||
* @param[in] bus I2C bus to which the AXP209 is connected
|
||||
* @return CB_SUCCES on success,
|
||||
* CB_ERR_ARG if voltage is out of range, or an error code otherwise.
|
||||
*/
|
||||
@@ -290,7 +290,7 @@ static enum cb_err set_rail(u8 bus, int idx, u16 mv)
|
||||
* reconfigured, and retain its powerup voltage.
|
||||
*
|
||||
* @param[in] cfg pointer to @ref drivers_xpowers_axp209_config structure
|
||||
* @param[in] bus I²C bus to which the AXP209 is connected
|
||||
* @param[in] bus I2C bus to which the AXP209 is connected
|
||||
* @return CB_SUCCES on success, or an error code otherwise.
|
||||
*/
|
||||
enum cb_err axp209_set_voltages(u8 bus, const struct
|
||||
|
Reference in New Issue
Block a user