diff options
author | Dmitry Kravkov <dmitry@broadcom.com> | 2010-07-27 08:31:10 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-27 23:35:39 -0400 |
commit | 5d1e859c5b600c491336f023a2f2105c24597226 (patch) | |
tree | 9391b004d9237f385c36297214a022cadcb8f84a /drivers/net/cnic.c | |
parent | 2c6952dfdda2f266f2f501792b8d6413caf25f7a (diff) |
bnx2x: Create separate folder for bnx2x driver
This commit includes files movement to newly created folder
using git-mv command and fixes references in cnic and bnx2x code
to each other.
files moved using following:
#!/bin/bash
mkdir drivers/net/bnx2x/
list=$(cd drivers/net/ && ls bnx2x*.[ch])
for f in $list; do
git mv -f drivers/net/$f drivers/net/bnx2x/$f
done
Signed-off-by: Dmitry Kravkov <dmitry@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/cnic.c')
-rw-r--r-- | drivers/net/cnic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/cnic.c b/drivers/net/cnic.c index 5ecf0bcf372d..09610323a948 100644 --- a/drivers/net/cnic.c +++ b/drivers/net/cnic.c | |||
@@ -40,9 +40,9 @@ | |||
40 | 40 | ||
41 | #include "cnic_if.h" | 41 | #include "cnic_if.h" |
42 | #include "bnx2.h" | 42 | #include "bnx2.h" |
43 | #include "bnx2x_reg.h" | 43 | #include "bnx2x/bnx2x_reg.h" |
44 | #include "bnx2x_fw_defs.h" | 44 | #include "bnx2x/bnx2x_fw_defs.h" |
45 | #include "bnx2x_hsi.h" | 45 | #include "bnx2x/bnx2x_hsi.h" |
46 | #include "../scsi/bnx2i/57xx_iscsi_constants.h" | 46 | #include "../scsi/bnx2i/57xx_iscsi_constants.h" |
47 | #include "../scsi/bnx2i/57xx_iscsi_hsi.h" | 47 | #include "../scsi/bnx2i/57xx_iscsi_hsi.h" |
48 | #include "cnic.h" | 48 | #include "cnic.h" |