summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/system/radio.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/system/radio.h b/include/system/radio.h
index d73d3ae49..36e218889 100644
--- a/include/system/radio.h
+++ b/include/system/radio.h
@@ -170,7 +170,8 @@ typedef struct radio_program_info {
170 bool stereo; /* program is stereo or not */ 170 bool stereo; /* program is stereo or not */
171 bool digital; /* digital program or not (e.g HD Radio program) */ 171 bool digital; /* digital program or not (e.g HD Radio program) */
172 unsigned int signal_strength; /* signal strength from 0 to 100 */ 172 unsigned int signal_strength; /* signal strength from 0 to 100 */
173 radio_metadata_t *metadata; /* non null if meta data are present (e.g PTY, song title ...) */ 173 /* meta data (e.g PTY, song title ...), must not be NULL */
174 __attribute__((aligned(8))) radio_metadata_t *metadata;
174} radio_program_info_t; 175} radio_program_info_t;
175 176
176 177