Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
test ci

Signed-off-by: Mirko Covizzi <mirko.covizzi@nordicsemi.no>
  • Loading branch information
MirkoCovizzi committed Feb 21, 2025
1 parent 3223841 commit 34041a4
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions include/modem/at_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ struct at_param_list {
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_list_init(struct at_param_list *list, size_t max_params_count);
int at_params_list_init(struct at_param_list *list, size_t max_params_count);

Check warning on line 104 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:104 please, no spaces at the start of a line

/**
* @deprecated
Expand All @@ -111,7 +111,7 @@ __deprecated int at_params_list_init(struct at_param_list *list, size_t max_para
*
* @param[in] list Parameter list to clear.
*/
__deprecated void at_params_list_clear(struct at_param_list *list);
void at_params_list_clear(struct at_param_list *list);

Check warning on line 114 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:114 please, no spaces at the start of a line

/**
* @deprecated
Expand All @@ -121,7 +121,7 @@ __deprecated void at_params_list_clear(struct at_param_list *list);
*
* @param[in] list Parameter list to free.
*/
__deprecated void at_params_list_free(struct at_param_list *list);
void at_params_list_free(struct at_param_list *list);

Check warning on line 124 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:124 please, no spaces at the start of a line

/**
* @deprecated
Expand All @@ -137,7 +137,7 @@ __deprecated void at_params_list_free(struct at_param_list *list);
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_int_put(const struct at_param_list *list, size_t index, int64_t value);
int at_params_int_put(const struct at_param_list *list, size_t index, int64_t value);

Check warning on line 140 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:140 please, no spaces at the start of a line

/**
* @deprecated
Expand All @@ -155,7 +155,7 @@ __deprecated int at_params_int_put(const struct at_param_list *list, size_t inde
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_string_put(const struct at_param_list *list, size_t index,
int at_params_string_put(const struct at_param_list *list, size_t index,

Check warning on line 158 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:158 please, no spaces at the start of a line
const char *str, size_t str_len);

/**
Expand All @@ -178,7 +178,7 @@ __deprecated int at_params_string_put(const struct at_param_list *list, size_t i
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_array_put(const struct at_param_list *list, size_t index,
int at_params_array_put(const struct at_param_list *list, size_t index,

Check warning on line 181 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:181 please, no spaces at the start of a line
const uint32_t *array, size_t array_len);

/**
Expand All @@ -195,7 +195,7 @@ __deprecated int at_params_array_put(const struct at_param_list *list, size_t in
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_empty_put(const struct at_param_list *list, size_t index);
int at_params_empty_put(const struct at_param_list *list, size_t index);

Check warning on line 198 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:198 please, no spaces at the start of a line

/**
* @deprecated
Expand All @@ -210,7 +210,7 @@ __deprecated int at_params_empty_put(const struct at_param_list *list, size_t in
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_size_get(const struct at_param_list *list, size_t index, size_t *len);
int at_params_size_get(const struct at_param_list *list, size_t index, size_t *len);

Check warning on line 213 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:213 please, no spaces at the start of a line

/**
* @deprecated
Expand All @@ -223,7 +223,7 @@ __deprecated int at_params_size_get(const struct at_param_list *list, size_t ind
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_short_get(const struct at_param_list *list, size_t index,
int at_params_short_get(const struct at_param_list *list, size_t index,

Check warning on line 226 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:226 please, no spaces at the start of a line
int16_t *value);

/**
Expand All @@ -237,7 +237,7 @@ __deprecated int at_params_short_get(const struct at_param_list *list, size_t in
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_unsigned_short_get(const struct at_param_list *list, size_t index,
int at_params_unsigned_short_get(const struct at_param_list *list, size_t index,

Check warning on line 240 in include/modem/at_params.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

include/modem/at_params.h:240 please, no spaces at the start of a line
uint16_t *value);

/**
Expand All @@ -251,7 +251,7 @@ __deprecated int at_params_unsigned_short_get(const struct at_param_list *list,
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_int_get(const struct at_param_list *list, size_t index,
int at_params_int_get(const struct at_param_list *list, size_t index,
int32_t *value);

/**
Expand All @@ -265,7 +265,7 @@ __deprecated int at_params_int_get(const struct at_param_list *list, size_t inde
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_unsigned_int_get(const struct at_param_list *list, size_t index,
int at_params_unsigned_int_get(const struct at_param_list *list, size_t index,
uint32_t *value);

/**
Expand All @@ -279,7 +279,7 @@ __deprecated int at_params_unsigned_int_get(const struct at_param_list *list, si
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_int64_get(const struct at_param_list *list, size_t index,
int at_params_int64_get(const struct at_param_list *list, size_t index,
int64_t *value);

/**
Expand All @@ -300,7 +300,7 @@ __deprecated int at_params_int64_get(const struct at_param_list *list, size_t in
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_string_get(const struct at_param_list *list, size_t index,
int at_params_string_get(const struct at_param_list *list, size_t index,
char *value, size_t *len);

/**
Expand All @@ -319,7 +319,7 @@ __deprecated int at_params_string_get(const struct at_param_list *list, size_t i
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_string_ptr_get(const struct at_param_list *list, size_t index,
int at_params_string_ptr_get(const struct at_param_list *list, size_t index,
const char **at_param, size_t *len);

/**
Expand All @@ -340,7 +340,7 @@ __deprecated int at_params_string_ptr_get(const struct at_param_list *list, size
* @retval 0 If the operation was successful.
* Otherwise, a (negative) error code is returned.
*/
__deprecated int at_params_array_get(const struct at_param_list *list, size_t index,
int at_params_array_get(const struct at_param_list *list, size_t index,
uint32_t *array, size_t *len);

/**
Expand All @@ -351,7 +351,7 @@ __deprecated int at_params_array_get(const struct at_param_list *list, size_t in
*
* @return The number of valid parameters until an empty parameter is found.
*/
__deprecated uint32_t at_params_valid_count_get(const struct at_param_list *list);
uint32_t at_params_valid_count_get(const struct at_param_list *list);

/**
* @deprecated
Expand Down

0 comments on commit 34041a4

Please sign in to comment.