struct work_struct ser_hdl_work;
        struct delayed_work ser_alarm_work;
-       struct state_ent *st_tbl;
-       struct event_ent *ev_tbl;
+       const struct state_ent *st_tbl;
+       const struct event_ent *ev_tbl;
        struct list_head msg_q;
        spinlock_t msg_q_lock; /* lock when read/write ser msg */
        DECLARE_BITMAP(flags, RTW89_NUM_OF_SER_FLAGS);
 
        }
 }
 
-static struct event_ent ser_ev_tbl[] = {
+static const struct event_ent ser_ev_tbl[] = {
        {SER_EV_NONE, "SER_EV_NONE"},
        {SER_EV_STATE_IN, "SER_EV_STATE_IN"},
        {SER_EV_STATE_OUT, "SER_EV_STATE_OUT"},
        {SER_EV_MAXX, "SER_EV_MAX"}
 };
 
-static struct state_ent ser_st_tbl[] = {
+static const struct state_ent ser_st_tbl[] = {
        {SER_IDLE_ST, "SER_IDLE_ST", ser_idle_st_hdl},
        {SER_RESET_TRX_ST, "SER_RESET_TRX_ST", ser_reset_trx_st_hdl},
        {SER_DO_HCI_ST, "SER_DO_HCI_ST", ser_do_hci_st_hdl},