irda: Fix build failures after IRDA_DEBUG->pr_debug
Fix the build failures that result from the use of pr_debug without the referenced char * arrays being defined. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
4d3c9d37f7
commit
a768851f94
@@ -43,9 +43,8 @@
|
||||
#include <net/irda/iriap_event.h>
|
||||
#include <net/irda/iriap.h>
|
||||
|
||||
#ifdef CONFIG_IRDA_DEBUG
|
||||
/* FIXME: This one should go in irlmp.c */
|
||||
static const char *const ias_charset_types[] = {
|
||||
static const char *const ias_charset_types[] __maybe_unused = {
|
||||
"CS_ASCII",
|
||||
"CS_ISO_8859_1",
|
||||
"CS_ISO_8859_2",
|
||||
@@ -58,7 +57,6 @@ static const char *const ias_charset_types[] = {
|
||||
"CS_ISO_8859_9",
|
||||
"CS_UNICODE"
|
||||
};
|
||||
#endif /* CONFIG_IRDA_DEBUG */
|
||||
|
||||
static hashbin_t *iriap = NULL;
|
||||
static void *service_handle;
|
||||
|
Reference in New Issue
Block a user