mirror of https://github.com/hak5/openwrt-owl.git
ramips: remove dead (and potentially crashy) code in mt7621 gsw init
Signed-off-by: Felix Fietkau <nbd@nbd.name>openwrt-18.06
parent
147b679891
commit
a276002079
|
@ -238,9 +238,7 @@ int mtk_gsw_init(struct fe_priv *priv)
|
||||||
static int mt7621_gsw_probe(struct platform_device *pdev)
|
static int mt7621_gsw_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
const char *port4 = NULL;
|
|
||||||
struct mt7620_gsw *gsw;
|
struct mt7620_gsw *gsw;
|
||||||
struct device_node *np;
|
|
||||||
|
|
||||||
gsw = devm_kzalloc(&pdev->dev, sizeof(struct mt7620_gsw), GFP_KERNEL);
|
gsw = devm_kzalloc(&pdev->dev, sizeof(struct mt7620_gsw), GFP_KERNEL);
|
||||||
if (!gsw)
|
if (!gsw)
|
||||||
|
@ -251,15 +249,6 @@ static int mt7621_gsw_probe(struct platform_device *pdev)
|
||||||
return -EADDRNOTAVAIL;
|
return -EADDRNOTAVAIL;
|
||||||
|
|
||||||
gsw->dev = &pdev->dev;
|
gsw->dev = &pdev->dev;
|
||||||
|
|
||||||
of_property_read_string(np, "mediatek,port4", &port4);
|
|
||||||
if (port4 && !strcmp(port4, "ephy"))
|
|
||||||
gsw->port4 = PORT4_EPHY;
|
|
||||||
else if (port4 && !strcmp(port4, "gmac"))
|
|
||||||
gsw->port4 = PORT4_EXT;
|
|
||||||
else
|
|
||||||
gsw->port4 = PORT4_EPHY;
|
|
||||||
|
|
||||||
gsw->irq = platform_get_irq(pdev, 0);
|
gsw->irq = platform_get_irq(pdev, 0);
|
||||||
|
|
||||||
platform_set_drvdata(pdev, gsw);
|
platform_set_drvdata(pdev, gsw);
|
||||||
|
|
Loading…
Reference in New Issue