diff options
author | Jeff Mahoney <jeffm@suse.com> | 2010-06-09 16:01:10 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-06-30 08:18:15 -0700 |
commit | 8174fc04e8e71b3969a45c9be288f6535d6b90d3 (patch) | |
tree | 677b4eec4f3f24afc4edba80e0ec16716ba22e9f /drivers/staging | |
parent | d750785f305e03669757678c24cb4e6e8761edf0 (diff) |
Staging: wlags49_h2: add missing <linux/string.h> for strlen
On ia64, the build fails with incompatible implicit definition of strlen.
This patch adds the <linux/string.h> include to get the real prototype.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/wlags49_h2/wl_enc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/wlags49_h2/wl_enc.c b/drivers/staging/wlags49_h2/wl_enc.c index 48c44c8fdb2..26cf5486edd 100644 --- a/drivers/staging/wlags49_h2/wl_enc.c +++ b/drivers/staging/wlags49_h2/wl_enc.c @@ -62,6 +62,7 @@ /******************************************************************************* * include files ******************************************************************************/ +#include <linux/string.h> #include <wl_version.h> #include <debug.h> |