diff options
| author | Jan Engelhardt <jengelh@medozas.de> | 2009-08-05 13:42:58 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2009-08-05 13:42:58 -0400 |
| commit | 36cbd3dcc10384f813ec0814255f576c84f2bcd4 (patch) | |
| tree | c3579edea972519d2f9ae99d7da9a5dd56e6f5c1 /include/net/irda | |
| parent | db71789c01ae7b641f83c5aa64e7df25122f4b28 (diff) | |
net: mark read-only arrays as const
String literals are constant, and usually, we can also tag the array
of pointers const too, moving it to the .rodata section.
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/irda')
| -rw-r--r-- | include/net/irda/ircomm_event.h | 2 | ||||
| -rw-r--r-- | include/net/irda/ircomm_tty_attach.h | 4 | ||||
| -rw-r--r-- | include/net/irda/irlap_event.h | 2 | ||||
| -rw-r--r-- | include/net/irda/irlmp_event.h | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/include/net/irda/ircomm_event.h b/include/net/irda/ircomm_event.h index c290447872d1..bc0c6f31f1c6 100644 --- a/include/net/irda/ircomm_event.h +++ b/include/net/irda/ircomm_event.h | |||
| @@ -74,7 +74,7 @@ struct ircomm_info { | |||
| 74 | struct qos_info *qos; | 74 | struct qos_info *qos; |
| 75 | }; | 75 | }; |
| 76 | 76 | ||
| 77 | extern char *ircomm_state[]; | 77 | extern const char *const ircomm_state[]; |
| 78 | 78 | ||
| 79 | struct ircomm_cb; /* Forward decl. */ | 79 | struct ircomm_cb; /* Forward decl. */ |
| 80 | 80 | ||
diff --git a/include/net/irda/ircomm_tty_attach.h b/include/net/irda/ircomm_tty_attach.h index f91a5695aa44..0a63bbb972d7 100644 --- a/include/net/irda/ircomm_tty_attach.h +++ b/include/net/irda/ircomm_tty_attach.h | |||
| @@ -66,8 +66,8 @@ struct ircomm_tty_info { | |||
| 66 | __u8 dlsap_sel; | 66 | __u8 dlsap_sel; |
| 67 | }; | 67 | }; |
| 68 | 68 | ||
| 69 | extern char *ircomm_state[]; | 69 | extern const char *const ircomm_state[]; |
| 70 | extern char *ircomm_tty_state[]; | 70 | extern const char *const ircomm_tty_state[]; |
| 71 | 71 | ||
| 72 | int ircomm_tty_do_event(struct ircomm_tty_cb *self, IRCOMM_TTY_EVENT event, | 72 | int ircomm_tty_do_event(struct ircomm_tty_cb *self, IRCOMM_TTY_EVENT event, |
| 73 | struct sk_buff *skb, struct ircomm_tty_info *info); | 73 | struct sk_buff *skb, struct ircomm_tty_info *info); |
diff --git a/include/net/irda/irlap_event.h b/include/net/irda/irlap_event.h index 2ae2e119ef4b..4c90824c50fb 100644 --- a/include/net/irda/irlap_event.h +++ b/include/net/irda/irlap_event.h | |||
| @@ -120,7 +120,7 @@ typedef enum { /* FIXME check the two first reason codes */ | |||
| 120 | LAP_PRIMARY_CONFLICT, | 120 | LAP_PRIMARY_CONFLICT, |
| 121 | } LAP_REASON; | 121 | } LAP_REASON; |
| 122 | 122 | ||
| 123 | extern const char *irlap_state[]; | 123 | extern const char *const irlap_state[]; |
| 124 | 124 | ||
| 125 | void irlap_do_event(struct irlap_cb *self, IRLAP_EVENT event, | 125 | void irlap_do_event(struct irlap_cb *self, IRLAP_EVENT event, |
| 126 | struct sk_buff *skb, struct irlap_info *info); | 126 | struct sk_buff *skb, struct irlap_info *info); |
diff --git a/include/net/irda/irlmp_event.h b/include/net/irda/irlmp_event.h index e03ae4ae3963..9e4ec17a7449 100644 --- a/include/net/irda/irlmp_event.h +++ b/include/net/irda/irlmp_event.h | |||
| @@ -79,8 +79,8 @@ typedef enum { | |||
| 79 | LM_LAP_IDLE_TIMEOUT, | 79 | LM_LAP_IDLE_TIMEOUT, |
| 80 | } IRLMP_EVENT; | 80 | } IRLMP_EVENT; |
| 81 | 81 | ||
| 82 | extern const char *irlmp_state[]; | 82 | extern const char *const irlmp_state[]; |
| 83 | extern const char *irlsap_state[]; | 83 | extern const char *const irlsap_state[]; |
| 84 | 84 | ||
| 85 | void irlmp_watchdog_timer_expired(void *data); | 85 | void irlmp_watchdog_timer_expired(void *data); |
| 86 | void irlmp_discovery_timer_expired(void *data); | 86 | void irlmp_discovery_timer_expired(void *data); |
