From 9473c5d75d54129135472ce93b1cff78d246a9c9 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 22 Nov 2012 10:50:52 +0100 Subject: sms: Mark the state dispatch table as static const GCC 4.7.2 was already smart enough to see that the table is const so there is no change in the generated assembly code. For some reason the dispatch is still going through one relocation. --- src/gsm/gsm0411_smc.c | 4 ++-- src/gsm/gsm0411_smr.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/gsm/gsm0411_smc.c b/src/gsm/gsm0411_smc.c index cd267a07..ff68c089 100644 --- a/src/gsm/gsm0411_smc.c +++ b/src/gsm/gsm0411_smc.c @@ -410,7 +410,7 @@ static int gsm411_mnsms_abort_req(struct gsm411_smc_inst *inst, } /* statefull handling for MNSMS SAP messages */ -static struct smcdownstate { +static const struct smcdownstate { uint32_t states; int type; const char *name; @@ -471,7 +471,7 @@ int gsm411_smc_send(struct gsm411_smc_inst *inst, int msg_type, } /* statefull handling for MMSMS SAP messages */ -static struct smcdatastate { +static const struct smcdatastate { uint32_t states; int type, cp_type; const char *name; diff --git a/src/gsm/gsm0411_smr.c b/src/gsm/gsm0411_smr.c index 8003bc82..c6c85e1e 100644 --- a/src/gsm/gsm0411_smr.c +++ b/src/gsm/gsm0411_smr.c @@ -369,7 +369,7 @@ static void rp_timer_expired(void *data) } /* statefull handling for SM-RL SAP messages */ -static struct smrdownstate { +static const struct smrdownstate { uint32_t states; int type; const char *name; @@ -421,7 +421,7 @@ int gsm411_smr_send(struct gsm411_smr_inst *inst, int msg_type, } /* statefull handling for MMSMS SAP messages */ -static struct smrdatastate { +static const struct smrdatastate { uint32_t states; int type; const char *name; -- cgit v1.2.3