Skip to content

Commit b4e18b2

Browse files
committed
Merge branch 'bcm4908_enet-post-review-fixes'
Rafał Miłecki says: ==================== bcm4908_enet: post-review fixes V2 of my BCM4908 Ethernet patchset was applied to the net-next.git and it was later that is received some extra reviews. I'm sending patches that handle pointed out issues. David: earler I missed that V2 was applied and I sent V3 and V4 of my inital patchset. Sorry for that. I think it's the best to ignore V3 and V4 I sent and proceed with this fixes patchset instead. ==================== Signed-off-by: David S. Miller <[email protected]>
2 parents 0ae2015 + bdd70b9 commit b4e18b2

File tree

6 files changed

+123
-126
lines changed

6 files changed

+123
-126
lines changed

Documentation/devicetree/bindings/net/brcm,bcm4908enet.yaml renamed to Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
22
%YAML 1.2
33
---
4-
$id: http://devicetree.org/schemas/net/brcm,bcm4908enet.yaml#
4+
$id: http://devicetree.org/schemas/net/brcm,bcm4908-enet.yaml#
55
$schema: http://devicetree.org/meta-schemas/core.yaml#
66

77
title: Broadcom BCM4908 Ethernet controller
@@ -11,9 +11,12 @@ description: Broadcom's Ethernet controller integrated into BCM4908 family SoCs
1111
maintainers:
1212
- Rafał Miłecki <[email protected]>
1313

14+
allOf:
15+
- $ref: ethernet-controller.yaml#
16+
1417
properties:
1518
compatible:
16-
const: brcm,bcm4908enet
19+
const: brcm,bcm4908-enet
1720

1821
reg:
1922
maxItems: 1
@@ -37,7 +40,7 @@ examples:
3740
#include <dt-bindings/interrupt-controller/arm-gic.h>
3841
3942
ethernet@80002000 {
40-
compatible = "brcm,bcm4908enet";
43+
compatible = "brcm,bcm4908-enet";
4144
reg = <0x80002000 0x1000>;
4245
4346
interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;

MAINTAINERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3450,8 +3450,8 @@ M: Rafał Miłecki <[email protected]>
34503450
34513451
34523452
S: Maintained
3453-
F: Documentation/devicetree/bindings/net/brcm,bcm4908enet.yaml
3454-
F: drivers/net/ethernet/broadcom/bcm4908enet.*
3453+
F: Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3454+
F: drivers/net/ethernet/broadcom/bcm4908_enet.*
34553455
F: drivers/net/ethernet/broadcom/unimac.h
34563456

34573457
BROADCOM BCM5301X ARM ARCHITECTURE

drivers/net/ethernet/broadcom/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ config B44_PCI
5151
depends on B44_PCI_AUTOSELECT && B44_PCICORE_AUTOSELECT
5252
default y
5353

54-
config BCM4908ENET
54+
config BCM4908_ENET
5555
tristate "Broadcom BCM4908 internal mac support"
5656
depends on ARCH_BCM4908 || COMPILE_TEST
5757
default y

drivers/net/ethernet/broadcom/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

66
obj-$(CONFIG_B44) += b44.o
7-
obj-$(CONFIG_BCM4908ENET) += bcm4908enet.o
7+
obj-$(CONFIG_BCM4908_ENET) += bcm4908_enet.o
88
obj-$(CONFIG_BCM63XX_ENET) += bcm63xx_enet.o
99
obj-$(CONFIG_BCMGENET) += genet/
1010
obj-$(CONFIG_BNX2) += bnx2.o

0 commit comments

Comments
 (0)