* (0x03): Get serial number of the board (Response : CB000-00-00)
  * (0x06, 0x03, 0x03, 0x08, 0x01, 0x0f) : Get Component revision
  */
-static struct si4713_start_seq_table start_seq[] = {
+static const struct si4713_start_seq_table start_seq[] = {
 
        { 1, { 0x03 } },
        { 2, { 0x32, 0x7f } },
 
        for (i = 0; i < ARRAY_SIZE(start_seq); i++) {
                int len = start_seq[i].len;
-               u8 *payload = start_seq[i].payload;
+               const u8 *payload = start_seq[i].payload;
 
                memcpy(radio->buffer + 1, payload, len);
                memset(radio->buffer + len + 1, 0, BUFFER_LENGTH - 1 - len);