ixgbe: Add const string for overheat message
authorDon Skidmore <donald.c.skidmore@intel.com>
Tue, 9 Jun 2015 23:36:23 +0000 (16:36 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 10 Jun 2015 00:21:28 +0000 (17:21 -0700)
The over heat message is displayed for multiple reasons but the text is
cut-n-pasted for each of these cases.  This patch pulls the text from the
same location.  I noticed this as I am about to add another case.

Signed-off-by: Don Skidmore <donald.c.skidmore@intel.com>
Tested-by: Krishneil Singh <krishneil.k.singh@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c

index 1b2bdbf5980e850f330003badf3ac056cf09b2d8..30adfb8f08145e0bdf3465eb368cf60fcef63a52 100644 (file)
@@ -81,6 +81,8 @@ const char ixgbe_driver_version[] = DRV_VERSION;
 static const char ixgbe_copyright[] =
                                "Copyright (c) 1999-2014 Intel Corporation.";
 
+static const char ixgbe_overheat_msg[] = "Network adapter has been stopped because it has over heated. Restart the computer. If the problem persists, power off the system and replace the adapter";
+
 static const struct ixgbe_info *ixgbe_info_tbl[] = {
        [board_82598]           = &ixgbe_82598_info,
        [board_82599]           = &ixgbe_82599_info,
@@ -2390,10 +2392,7 @@ static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter)
                        return;
                break;
        }
-       e_crit(drv,
-              "Network adapter has been stopped because it has over heated. "
-              "Restart the computer. If the problem persists, "
-              "power off the system and replace the adapter\n");
+       e_crit(drv, "%s\n", ixgbe_overheat_msg);
 
        adapter->interrupt_event = 0;
 }
@@ -2440,10 +2439,7 @@ static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr)
                return;
        }
 
-       e_crit(drv,
-              "Network adapter has been stopped because it has over heated. "
-              "Restart the computer. If the problem persists, "
-              "power off the system and replace the adapter\n");
+       e_crit(drv, "%s\n", ixgbe_overheat_msg);
 }
 
 static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr)
This page took 0.028287 seconds and 5 git commands to generate.