1. 11 3月, 2016 3 次提交
  2. 03 3月, 2016 5 次提交
  3. 19 2月, 2016 1 次提交
  4. 24 12月, 2015 2 次提交
  5. 22 10月, 2015 1 次提交
  6. 04 8月, 2015 1 次提交
  7. 27 7月, 2015 1 次提交
  8. 09 7月, 2015 1 次提交
  9. 02 6月, 2015 1 次提交
  10. 28 5月, 2015 1 次提交
    • H
      cxgb4/cxgb4vf: function and argument name cleanup · b2612722
      Hariprasad Shenai 提交于
      This patch changes variable name 'fn' to 'pf' of structure adapter.
      A 'fn' usually stands for PCI function which could be a PF or a VF.
      However, the use of this particular variable is explicitly limited to PF
      only. So, be specific about it in the variable name.
      
      Also corrects arguments passed for fn t4_ofld_eq_free, t4_ctrl_eq_free,
      t4_eth_eq_free, t4_iq_free, t4_alloc_vi, t4_fw_hello, t4_wr_mbox and
      t4_cfg_pfvf function.
      
      Also renames cxgb4_t4_bar2_sge_qregs to t4_bar2_sge_qregs and renames
      the latter function name in cxgb4vf driver to t4vf_bar2_sge_qregs to
      avoid conflicts. Also fixes alignment for these function.
      Signed-off-by: NHariprasad Shenai <hariprasad@chelsio.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b2612722
  11. 13 5月, 2015 1 次提交
  12. 06 5月, 2015 2 次提交
  13. 10 4月, 2015 1 次提交
  14. 30 3月, 2015 1 次提交
  15. 20 3月, 2015 1 次提交
  16. 09 3月, 2015 1 次提交
  17. 15 1月, 2015 1 次提交
  18. 14 1月, 2015 2 次提交
  19. 13 1月, 2015 2 次提交
  20. 06 1月, 2015 4 次提交
  21. 23 12月, 2014 1 次提交
  22. 10 12月, 2014 3 次提交
  23. 26 11月, 2014 1 次提交
    • H
      cxgb4/cxgb4vf/csiostor: Add T4/T5 PCI ID Table · 3fedeab1
      Hariprasad Shenai 提交于
      Add a new file t4_pci_id_tbl.h that contains T4/T5 PCI ID Table so that for all
      drivers that uses T4/T5 PCI functions changes can be done in one place.
      
      checkpatch.pl script reports following error, which if tried to fix ends up in
      compilation error.
      
      	ERROR: Macros with complex values should be enclosed in parentheses
      	+#define CH_PCI_DEVICE_ID_TABLE_DEFINE_END \
      	+		{ 0, } \
      	+	}
      
      	WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
      	new file mode 100644
      
      	ERROR: Macros with complex values should be enclosed in parentheses
      	+#define CH_PCI_ID_TABLE_FENTRY(devid) \
      	+	CH_PCI_ID_TABLE_ENTRY((devid) | \
      	+			      ((CH_PCI_DEVICE_ID_FUNCTION) << 8)), \
      	+	CH_PCI_ID_TABLE_ENTRY((devid) | \
      	+			      ((CH_PCI_DEVICE_ID_FUNCTION2) << 8))
      
      	ERROR: Macros with complex values should be enclosed in parentheses
      	+#define CH_PCI_DEVICE_ID_TABLE_DEFINE_END { 0, } }
      
      	ERROR: Macros with complex values should be enclosed in parentheses
      	+#define CH_PCI_DEVICE_ID_TABLE_DEFINE_END { 0, } }
      Signed-off-by: NHariprasad Shenai <hariprasad@chelsio.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      3fedeab1
  24. 23 11月, 2014 2 次提交