forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'mips_fixes_4.21_1' of git://git.kernel.org/pub/scm/linux/k…
…ernel/git/mips/linux Pull MIPS fixes from Paul Burton: "A few early MIPS fixes for 4.21: - The Broadcom BCM63xx platform sees a fix for resetting the BCM6368 ethernet switch, and the removal of a platform device we've never had a driver for. - The Alchemy platform sees a few fixes for bitrot that occurred within the past few cycles. - We now enable vectored interrupt support for the MediaTek MT7620 SoC, which makes sense since they're supported by the SoC but in this case also works around a bug relating to the location of exception vectors when using a recent version of U-Boot. - The atomic64_fetch_*_relaxed() family of functions see a fix for a regression in MIPS64 kernels since v4.19. - Cavium Octeon III CN7xxx systems will now disable their RGMII interfaces rather than attempt to enable them & warn about the lack of support for doing so, as they did since initial CN7xxx ethernet support was added in v4.7. - The Microsemi/Microchip MSCC SoCs gain a MAINTAINERS entry. - .mailmap now provides consistency for Dengcheng Zhu's name & current email address" * tag 'mips_fixes_4.21_1' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux: MIPS: OCTEON: mark RGMII interface disabled on OCTEON III MIPS: Fix a R10000_LLSC_WAR logic in atomic.h MIPS: BCM63XX: drop unused and broken DSP platform device mailmap: Update name spelling and email for Dengcheng Zhu MIPS: ralink: Select CONFIG_CPU_MIPSR2_IRQ_VI on MT7620/8 MAINTAINERS: Add a maintainer for MSCC MIPS SoCs MIPS: Alchemy: update dma masks for devboard devices MIPS: Alchemy: update cpu-feature-overrides MIPS: Alchemy: drop DB1000 IrDA support bits MIPS: alchemy: cpu_all_mask is forbidden for clock event devices MIPS: BCM63XX: fix switch core reset on BCM6368
- Loading branch information
Showing
17 changed files
with
70 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,10 @@ Corey Minyard <[email protected]> | |
Damian Hobson-Garcia <[email protected]> | ||
David Brownell <[email protected]> | ||
David Woodhouse <[email protected]> | ||
Deng-Cheng Zhu <[email protected]> <[email protected]> | ||
Dengcheng Zhu <[email protected]> <[email protected]> | ||
Dengcheng Zhu <[email protected]> <[email protected]> | ||
Dengcheng Zhu <[email protected]> <[email protected]> | ||
Dengcheng Zhu <[email protected]> <[email protected]> | ||
Dmitry Eremin-Solenikov <[email protected]> | ||
Domen Puncer <[email protected]> | ||
Douglas Gilbert <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10016,8 +10016,9 @@ F: drivers/dma/at_xdmac.c | |
|
||
MICROSEMI MIPS SOCS | ||
M: Alexandre Belloni <[email protected]> | ||
M: Microchip Linux Driver Support <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
S: Supported | ||
F: arch/mips/generic/board-ocelot.c | ||
F: arch/mips/configs/generic/board-ocelot.config | ||
F: arch/mips/boot/dts/mscc/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
obj-y += clk.o cpu.o cs.o gpio.o irq.o nvram.o prom.o reset.o \ | ||
setup.o timer.o dev-dsp.o dev-enet.o dev-flash.o \ | ||
dev-pcmcia.o dev-rng.o dev-spi.o dev-hsspi.o dev-uart.o \ | ||
dev-wdt.o dev-usb-usbd.o | ||
setup.o timer.o dev-enet.o dev-flash.o dev-pcmcia.o \ | ||
dev-rng.o dev-spi.o dev-hsspi.o dev-uart.o dev-wdt.o \ | ||
dev-usb-usbd.o | ||
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | ||
|
||
obj-y += boards/ |
Oops, something went wrong.