diff options
-rw-r--r-- | src/sound.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sound.c b/src/sound.c index a0da68a..08905ab 100644 --- a/src/sound.c +++ b/src/sound.c @@ -219,6 +219,7 @@ static int sound_is_supported(feedback_pattern_e pattern, bool *supported) return 0; } +//LCOV_EXCL_START Not used function static int sound_get_path(feedback_pattern_e pattern, char *buf, unsigned int buflen) { char *cur_path; @@ -239,7 +240,9 @@ static int sound_get_path(feedback_pattern_e pattern, char *buf, unsigned int bu snprintf(buf, buflen, "%s", cur_path); return ret; } +//LCOV_EXCL_STOP +//LCOV_EXCL_START Not used function static int sound_set_path(feedback_pattern_e pattern, char *path) { struct stat buf; @@ -296,6 +299,7 @@ static int sound_set_path(feedback_pattern_e pattern, char *path) profile->str_pattern(pattern), path); return 0; } +//LCOV_EXCL_STOP static const struct device_ops sound_device_ops = { .type = FEEDBACK_TYPE_SOUND, |