From: Samuel Ortiz <sameo@xxxxxxxxxxxxxxx> We're going to remove the FIRMWARE_NAME_MAX definition in order to avoid any firmware name length restriction. This patch gets rid of the statically allocated p54usb firmware string, and replaces them with const char pointers. Signed-off-by: Samuel Ortiz <sameo@xxxxxxxxxxxxxxx> --- drivers/net/wireless/p54/p54usb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: iwm-2.6/drivers/net/wireless/p54/p54usb.c =================================================================== --- iwm-2.6.orig/drivers/net/wireless/p54/p54usb.c 2009-05-27 09:52:58.000000000 +0200 +++ iwm-2.6/drivers/net/wireless/p54/p54usb.c 2009-05-27 09:53:29.000000000 +0200 @@ -84,8 +84,8 @@ MODULE_DEVICE_TABLE(usb, p54u_table); static const struct { u32 intf; enum p54u_hw_type type; - char fw[FIRMWARE_NAME_MAX]; - char fw_legacy[FIRMWARE_NAME_MAX]; + const char *fw; + const char *fw_legacy; char hw[20]; } p54u_fwlist[__NUM_P54U_HWTYPES] = { { -- Intel Open Source Technology Centre http://oss.intel.com/ -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html