#!/bin/bash # Based on # https://github.com/cilium/cilium/blob/master/contrib/scripts/extract_authors.sh function extract_authors() { authors=$(git shortlog --summary | awk '{$1=""; print $0}' | sed -e 's/^ //') IFS=$'\n' for i in $authors; do name=$(git log --use-mailmap --author="$i" --format="%aN" | head -1) mail=$(git log --use-mailmap --author="$i" --format="%aE" | head -1) printf ' * %s <%s>\n' "$name" "$mail" done } extract_authors | uniq | sort ory'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Cassel <niklas.cassel@axis.com>2016-12-30 13:56:46 +0100
committerDavid S. Miller <davem@davemloft.net>2017-01-02 12:30:26 -0500
commit31b95c9bdc20663a20b3261303c2a5fc34aae133 (patch)
tree16ce95432a5da093e35cde90f01704caa42aee0c
parent4b64e1a40c095f82ea6fbf4a0c11143532bb85a5 (diff)
net: stmmac: remove unused duplicate property snps,axi_all
For core revision 3.x Address-Aligned Beats is available in two registers. The DT property snps,aal was created for AAL in the DMA bus register, which is a read/write bit. The DT property snps,axi_all was created for AXI_AAL in the AXI bus mode register, which is a read only bit that reflects the value of AAL in the DMA bus register. Since the value of snps,axi_all is never used in the driver, and since the property was created for a bit that is read only, it should be safe to remove the property. Acked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com> Signed-off-by: Niklas Cassel <niklas.cassel@axis.com> Signed-off-by: David S. Miller <davem@davemloft.net>