igb.h (ee2c25efdd46d7ed5605d6fe877bdf4b47a4ab2e) | igb.h (603e86fa39cd48edba5ee8a4d19637bd41e2a8bf) |
---|---|
1/******************************************************************************* 2 3 Intel(R) Gigabit Ethernet Linux driver 4 Copyright(c) 2007-2013 Intel Corporation. 5 6 This program is free software; you can redistribute it and/or modify it 7 under the terms and conditions of the GNU General Public License, 8 version 2, as published by the Free Software Foundation. --- 433 unchanged lines hidden (view full) --- 442 443 char fw_version[32]; 444#ifdef CONFIG_IGB_HWMON 445 struct hwmon_buff igb_hwmon_buff; 446 bool ets; 447#endif 448 struct i2c_algo_bit_data i2c_algo; 449 struct i2c_adapter i2c_adap; | 1/******************************************************************************* 2 3 Intel(R) Gigabit Ethernet Linux driver 4 Copyright(c) 2007-2013 Intel Corporation. 5 6 This program is free software; you can redistribute it and/or modify it 7 under the terms and conditions of the GNU General Public License, 8 version 2, as published by the Free Software Foundation. --- 433 unchanged lines hidden (view full) --- 442 443 char fw_version[32]; 444#ifdef CONFIG_IGB_HWMON 445 struct hwmon_buff igb_hwmon_buff; 446 bool ets; 447#endif 448 struct i2c_algo_bit_data i2c_algo; 449 struct i2c_adapter i2c_adap; |
450 struct igb_i2c_client_list *i2c_clients; | 450 struct i2c_client *i2c_client; |
451}; 452 453#define IGB_FLAG_HAS_MSI (1 << 0) 454#define IGB_FLAG_DCA_ENABLED (1 << 1) 455#define IGB_FLAG_QUAD_PORT_A (1 << 2) 456#define IGB_FLAG_QUEUE_PAIRS (1 << 3) 457#define IGB_FLAG_DMAC (1 << 4) 458#define IGB_FLAG_PTP (1 << 5) --- 110 unchanged lines hidden --- | 451}; 452 453#define IGB_FLAG_HAS_MSI (1 << 0) 454#define IGB_FLAG_DCA_ENABLED (1 << 1) 455#define IGB_FLAG_QUAD_PORT_A (1 << 2) 456#define IGB_FLAG_QUEUE_PAIRS (1 << 3) 457#define IGB_FLAG_DMAC (1 << 4) 458#define IGB_FLAG_PTP (1 << 5) --- 110 unchanged lines hidden --- |