Skip to content

Commit 6ed9b3e

Browse files
committed
docs: Fix build errors
Signed-off-by: Ajay Bhargav <[email protected]>
1 parent 106eda2 commit 6ed9b3e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/hw/spi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ extern "C" {
5454
int spi_hw_init(int port, int hardware_cs, int clock, int mode, int cs_pol);
5555

5656
/**
57-
* Set/Change SPI clock speed. Default speed is @ref SPI_MAX_SPEED
57+
* Set/Change SPI clock speed. Default speed is 10MHz
5858
* @param port [in] SPI Port Number (@ref spiport_e)
5959
* @param clock_hz [in] Clock speed in Hz
6060
* @return 0 on success, negative value on error

include/ril/ril.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ enum sysurc_e {
9797
URC_EGPRS_NW_STATE_IND = 3, /**< Indication for EPS Network registration status, parameter value as @ref networkstate_e */
9898
URC_GPRS_NW_STATE_IND, /**< Indication for GPRS network state (state change), parameter value as @ref networkstate_e */
9999
URC_CFUN_STATE_IND, /**< Indication for CFUN state, with parameters as one of @ref cfunstate_e */
100-
URC_COMING_CALL_IND, /**< Indication for coming call with parameter as @ref callinfo_t */
100+
URC_COMING_CALL_IND, /**< Indication for coming call with parameter as @ref ril_callinfo_t */
101101
URC_CALL_STATE_IND, /**< Indication for call state (state change), parameter value as @ref callstatus_e */
102102
URC_NEW_SMS_IND, /**< Indication for new short message, parameter value as index of incoming SMS */
103103
URC_MODULE_VOLTAGE_IND, /**< Indication for abnormal voltage of module supply power, parameter value as @ref vbattind_e */

include/sys/termios.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ int cfsetospeed(struct termios *p, speed_t sp);
234234
* @param sp output baud rate
235235
* @return 0 when successful, -1 otherwise with errno set
236236
*/
237-
int cfsetspeed(struct termios *p, speed_t speed);
237+
int cfsetspeed(struct termios *p, speed_t sp);
238238

239239
/**
240240
* @brief Wait for transmission of output

0 commit comments

Comments
 (0)