]> err.no Git - linux-2.6/commitdiff
[ACPI] handle const char * __FUNCTION__ in debug code
authorLen Brown <len.brown@intel.com>
Fri, 29 Jul 2005 04:03:55 +0000 (00:03 -0400)
committerLen Brown <len.brown@intel.com>
Fri, 29 Jul 2005 04:08:42 +0000 (00:08 -0400)
build warning: discards qualifiers from pointer target type
when mixing "const char *" and "char *"

We should probably update the routines to expect const,
but easier for now to shut up the warning with 1 cast.

Signed-off-by: Len Brown <len.brown@intel.com>
include/acpi/platform/acgcc.h

index 39264127574ccdb403c5122090f6fecaa6543d26..e410e3b61415eab3509f3d3320440e5a2e73fba1 100644 (file)
@@ -46,7 +46,7 @@
 
 /* Function name is used for debug output. Non-ANSI, compiler-dependent */
 
-#define ACPI_GET_FUNCTION_NAME          __FUNCTION__
+#define ACPI_GET_FUNCTION_NAME          (char *) __FUNCTION__
 
 /* This macro is used to tag functions as "printf-like" because
  * some compilers (like GCC) can catch printf format string problems.