mirror of
https://github.com/torvalds/linux.git
synced 2024-12-24 11:51:27 +00:00
5d1e859c5b
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>
8 lines
128 B
Makefile
8 lines
128 B
Makefile
#
|
|
# Makefile for Broadcom 10-Gigabit ethernet driver
|
|
#
|
|
|
|
obj-$(CONFIG_BNX2X) += bnx2x.o
|
|
|
|
bnx2x-objs := bnx2x_main.o bnx2x_link.o
|