mirror of https://gitee.com/openkylin/linux.git
e1000e: minor error message corrections
Correct error messages when setting up Rx resources and when checking module parameters. Signed-off-by: Bruce Allan <bruce.w.allan@intel.com> Tested-by: Jeff Pieper <jeffrey.e.pieper@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
36b973df71
commit
e926244723
|
@ -2130,7 +2130,7 @@ int e1000e_setup_rx_resources(struct e1000_adapter *adapter)
|
|||
}
|
||||
err:
|
||||
vfree(rx_ring->buffer_info);
|
||||
e_err("Unable to allocate memory for the transmit descriptor ring\n");
|
||||
e_err("Unable to allocate memory for the receive descriptor ring\n");
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
|
@ -421,7 +421,7 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)
|
|||
static const struct e1000_option opt = {
|
||||
.type = enable_option,
|
||||
.name = "CRC Stripping",
|
||||
.err = "defaulting to enabled",
|
||||
.err = "defaulting to Enabled",
|
||||
.def = OPTION_ENABLED
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue