Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277571
b: refs/heads/master
c: a4ba8cb
h: refs/heads/master
i:
  277569: 3c62f71
  277567: 214ca8e
v: v3
  • Loading branch information
Jeff Kirsher committed Nov 16, 2011
1 parent 6af9342 commit 0b697b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8d233633bab501567841aaa2935963fb908c9523
refs/heads/master: a4ba8cbeeb07f7bc8f9bcbd3f9962adb50376034
14 changes: 7 additions & 7 deletions trunk/drivers/net/ethernet/intel/igbvf/netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
*******************************************************************************/

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/module.h>
#include <linux/types.h>
#include <linux/init.h>
Expand Down Expand Up @@ -1746,10 +1748,9 @@ void igbvf_update_stats(struct igbvf_adapter *adapter)

static void igbvf_print_link_info(struct igbvf_adapter *adapter)
{
dev_info(&adapter->pdev->dev, "Link is Up %d Mbps %s\n",
adapter->link_speed,
((adapter->link_duplex == FULL_DUPLEX) ?
"Full Duplex" : "Half Duplex"));
dev_info(&adapter->pdev->dev, "Link is Up %d Mbps %s Duplex\n",
adapter->link_speed,
adapter->link_duplex == FULL_DUPLEX ? "Full" : "Half");
}

static bool igbvf_has_link(struct igbvf_adapter *adapter)
Expand Down Expand Up @@ -2842,9 +2843,8 @@ static struct pci_driver igbvf_driver = {
static int __init igbvf_init_module(void)
{
int ret;
printk(KERN_INFO "%s - version %s\n",
igbvf_driver_string, igbvf_driver_version);
printk(KERN_INFO "%s\n", igbvf_copyright);
pr_info("%s - version %s\n", igbvf_driver_string, igbvf_driver_version);
pr_info("%s\n", igbvf_copyright);

ret = pci_register_driver(&igbvf_driver);

Expand Down

0 comments on commit 0b697b3

Please sign in to comment.