# SPDX-License-Identifier: GPL-2.0 # Shorthand warning = $(warning-if,y,$(1)) # Simply expanded variable. X := 1 SIMPLE := $(X) X := 2 $(warning,SIMPLE = $(SIMPLE)) # Recursively expanded variable. X := 1 RECURSIVE = $(X) X := 2 $(warning,RECURSIVE = $(RECURSIVE)) # Append something to a simply expanded variable. Y := 3 SIMPLE += $(Y) Y := 4 $(warning,SIMPLE = $(SIMPLE)) # Append something to a recursively expanded variable. Y := 3 RECURSIVE += $(Y) Y := 4 $(warning,RECURSIVE = $(RECURSIVE)) # Use += operator to an undefined variable. # This works as a recursively expanded variable. Y := 3 UNDEFINED_VARIABLE += $(Y) Y := 4 $(warning,UNDEFINED_VARIABLE = $(UNDEFINED_VARIABLE)) # You can use variable references for the lefthand side of assignment statement. X := A Y := B $(X)$(Y) := 5 $(warning,AB = $(AB)) # User-defined function. greeting = $(1), my name is $(2). $(warning,$(greeting,Hello,John)) # The number of arguments is not checked for user-defined functions. # If some arguments are optional, it is useful to pass fewer parameters. # $(2) will be blank in this case. $(warning,$(greeting,Hello)) # Unreferenced parameters are just ignored. $(warning,$(greeting,Hello,John,ignored,ignored)) on> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/net/benet/be_cmds.c
AgeCommit message (Expand)Author
2010-04-13be2net: clarify promiscuous cmd with a commentSathya Perla
2010-04-06Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ne...David S. Miller
2010-04-03net: convert multicast list to list_headJiri Pirko
2010-04-01be2net: Adding PCI SRIOV supportSarveshwar Bandi
2010-04-01be2net: fix flashing on big endian architecturesAjit Khaparde
2010-03-15be2net: fix mccq create for big endian architecturesAjit Khaparde
2010-03-08be2net: remove usage of be_pci_funcAjit Khaparde
2010-03-02be2net: fix tx completion pollingSathya Perla
2010-02-22net: convert multiple drivers to use netdev_for_each_mc_addr, part3Jiri Pirko
2010-02-19be2net: update copyright datesAjit Khaparde
2010-02-17be2net: don't rearm mcc cq when device is not openSathya Perla
2010-02-16Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ne...David S. Miller
2010-02-16be2net: set proper value to version field in req hdrAjit Khaparde
2010-02-15be2net: implement EEH pci error recovery handlersSathya Perla
2010-02-12be2net: bug fix for flashing the BladeEngine3 ASICAjit Khaparde
2010-01-28Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ne...David S. Miller
2010-01-23be2net: swap only first 2 fields of mcc_wrbSathya Perla
2010-01-10Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ne...David S. Miller
2010-01-08be2net: implements ethtool function to read eeprom data.Sarveshwar Bandi
2009-12-23be2net: Bug fix to config NIC appropriately before loopback testSarveshwar Bandi
2009-12-23be2net: Bug fix to avoid soft lockup in loopback test.Sarveshwar Bandi
2009-12-03be2net: Add support for ethtool self testSuresh R
2009-12-03be2net: Support for WoL using magic packet after suspend.Ajit Khaparde
2009-12-03be2net: Changes to print fw command opcode when command is failed by controller.Ajit Khaparde
2009-11-23be2net: remove BUG_ON() when be2net runs out of mccq wrbsSathya Perla
2009-11-23be2net: Issue fw_init/clean cmds to fwSathya Perla
2009-11-23be2net: support configuration of 64 multicast addresses instead of 32Sathya Perla
2009-11-20be2net: Patch to flash redboot section while firmware update.Sarveshwar Bandi
2009-10-28be2net: Changes to update ethtool get_settings function to return appropriate...Sarveshwar Bandi
2009-10-27Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ne...David S. Miller
2009-10-14be2net: fix support for PCI hot plugSathya Perla
2009-10-14be2net: fix promiscuous and multicast promiscuous modes being enabled alwaysSathya Perla
2009-10-12be2net: Implement ethtool get_phys_id function.Sarveshwar Bandi
2009-10-05be2net: Fix a bug in preparation of mcc wrb which was causing flash operation...Ajit Khaparde
2009-09-30be2net: Workaround to fix a bug in Rx Completion processing.Ajit Khaparde
2009-09-17be2net: fix some cmds to use mccq instead of mboxSathya Perla
2009-09-07be2net: Changes to support flashing of the be2 network adapterAjit Khaparde
2009-08-05be2net: Patch to perform function reset at initializationsarveshwarb
2009-08-01be2net: delete unnecessary code from be_cmd_POST()Sathya Perla
2009-08-01be2net: some name changes for consistencySathya Perla
2009-08-01be2net: replace some printks with dev_err()/dev_warn()Sathya Perla
2009-08-01be2net: remove pci_func field from be_adapter structSathya Perla
2009-08-01be2net: get rid of be_ctrl_info struct/abstractionSathya Perla
2009-06-19be2net: receive asynchronous link status notifications from BESathya Perla
2009-06-19be2net: cleanup multicast_set cmd to avoid mc_list copySathya Perla
2009-06-19be2net: Use MCC queue for cmds that may be called in BH contextSathya Perla
2009-06-19be2net: Add MCC queue mechanism for BE cmdsSathya Perla
2009-03-11net: Add be2net driver.Sathya Perla