aboutsummaryrefslogtreecommitdiff
path: root/drivers/pci
diff options
context:
space:
mode:
authorGravatar Bjorn Helgaas <bhelgaas@google.com> 2024-05-16 18:14:13 -0500
committerGravatar Bjorn Helgaas <bhelgaas@google.com> 2024-05-16 18:14:13 -0500
commit102c69699b5b5d4aebfe8d15d5f91bde68dababd (patch)
treeb995a0cd63d473c6144640c35c5fc4d068dc3f9b /drivers/pci
parentMerge branch 'pci/controller/dwc' (diff)
parentPCI: mt7621: Fix string truncation in mt7621_pcie_parse_port() (diff)
downloadlinux-102c69699b5b5d4aebfe8d15d5f91bde68dababd.tar.gz
linux-102c69699b5b5d4aebfe8d15d5f91bde68dababd.tar.bz2
linux-102c69699b5b5d4aebfe8d15d5f91bde68dababd.zip
Merge branch 'pci/controller/mt7621'
- Enlarge PHY name buffer to avoid snprintf() overflow (Sergio Paracuellos) * pci/controller/mt7621: PCI: mt7621: Fix string truncation in mt7621_pcie_parse_port()
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/controller/pcie-mt7621.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/controller/pcie-mt7621.c b/drivers/pci/controller/pcie-mt7621.c
index 79e225edb42a..d97b956e6e57 100644
--- a/drivers/pci/controller/pcie-mt7621.c
+++ b/drivers/pci/controller/pcie-mt7621.c
@@ -202,7 +202,7 @@ static int mt7621_pcie_parse_port(struct mt7621_pcie *pcie,
struct mt7621_pcie_port *port;
struct device *dev = pcie->dev;
struct platform_device *pdev = to_platform_device(dev);
- char name[10];
+ char name[11];
int err;
port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);