]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: stmmac: remove unused duplicate property snps,axi_all
authorNiklas Cassel <niklas.cassel@axis.com>
Fri, 30 Dec 2016 12:56:46 +0000 (13:56 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 2 Jan 2017 17:30:26 +0000 (12:30 -0500)
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>
Documentation/devicetree/bindings/net/stmmac.txt
drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
include/linux/stmmac.h

index 128da752fec95bae1e48a987009a4565a1791562..c3d2fd480a1b1165dfe51146c81836ad9920db0f 100644 (file)
@@ -65,7 +65,6 @@ Optional properties:
        - snps,wr_osr_lmt: max write outstanding req. limit
        - snps,rd_osr_lmt: max read outstanding req. limit
        - snps,kbbe: do not cross 1KiB boundary.
-       - snps,axi_all: align address
        - snps,blen: this is a vector of supported burst length.
        - snps,fb: fixed-burst
        - snps,mb: mixed-burst
index 082cd48db6a769b43507be7442ca6d9ff0099c5f..60ba8993c65062ad821a43992f99871eae01b23d 100644 (file)
@@ -121,7 +121,6 @@ static struct stmmac_axi *stmmac_axi_setup(struct platform_device *pdev)
        axi->axi_lpi_en = of_property_read_bool(np, "snps,lpi_en");
        axi->axi_xit_frm = of_property_read_bool(np, "snps,xit_frm");
        axi->axi_kbbe = of_property_read_bool(np, "snps,axi_kbbe");
-       axi->axi_axi_all = of_property_read_bool(np, "snps,axi_all");
        axi->axi_fb = of_property_read_bool(np, "snps,axi_fb");
        axi->axi_mb = of_property_read_bool(np, "snps,axi_mb");
        axi->axi_rb =  of_property_read_bool(np, "snps,axi_rb");
index 266dab9ad78240efbecaa992dba735a7f82d6981..889e0e9a3f1cf89a3be3b28617043590a6b8d9db 100644 (file)
@@ -103,7 +103,6 @@ struct stmmac_axi {
        u32 axi_wr_osr_lmt;
        u32 axi_rd_osr_lmt;
        bool axi_kbbe;
-       bool axi_axi_all;
        u32 axi_blen[AXI_BLEN];
        bool axi_fb;
        bool axi_mb;