Commit 11766199 authored by Adrian Bunk's avatar Adrian Bunk Committed by David S. Miller

[IRDA]: Removing unused EXPORT_SYMBOLs

This patch removes the following unused EXPORT_SYMBOL's:
- irias_find_attrib
- irias_new_string_value
- irias_new_octseq_value
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarSamuel Ortiz <samuel.ortiz@nokia.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f353976d
...@@ -257,7 +257,6 @@ struct ias_attrib *irias_find_attrib(struct ias_object *obj, char *name) ...@@ -257,7 +257,6 @@ struct ias_attrib *irias_find_attrib(struct ias_object *obj, char *name)
/* Unsafe (locking), attrib might change */ /* Unsafe (locking), attrib might change */
return attrib; return attrib;
} }
EXPORT_SYMBOL(irias_find_attrib);
/* /*
* Function irias_add_attribute (obj, attrib) * Function irias_add_attribute (obj, attrib)
...@@ -484,7 +483,6 @@ struct ias_value *irias_new_string_value(char *string) ...@@ -484,7 +483,6 @@ struct ias_value *irias_new_string_value(char *string)
return value; return value;
} }
EXPORT_SYMBOL(irias_new_string_value);
/* /*
* Function irias_new_octseq_value (octets, len) * Function irias_new_octseq_value (octets, len)
...@@ -519,7 +517,6 @@ struct ias_value *irias_new_octseq_value(__u8 *octseq , int len) ...@@ -519,7 +517,6 @@ struct ias_value *irias_new_octseq_value(__u8 *octseq , int len)
memcpy(value->t.oct_seq, octseq , len); memcpy(value->t.oct_seq, octseq , len);
return value; return value;
} }
EXPORT_SYMBOL(irias_new_octseq_value);
struct ias_value *irias_new_missing_value(void) struct ias_value *irias_new_missing_value(void)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment