Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c762036 authored by Lorenzo Pieralisi's avatar Lorenzo Pieralisi Committed by Olof Johansson
Browse files

drivers: bus: fix CCI driver kcalloc call parameters swap



This patch fixes a bug/typo in the CCI driver kcalloc usage
that inadvertently swapped the parameters order in the
kcalloc call and went unnoticed.

Reported-by: default avatarXia Feng <xiafeng@allwinnertech.com>
Signed-off-by: default avatarLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent 94db37ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -979,7 +979,7 @@ static int cci_probe(void)

	nb_cci_ports = cci_config->nb_ace + cci_config->nb_ace_lite;

	ports = kcalloc(sizeof(*ports), nb_cci_ports, GFP_KERNEL);
	ports = kcalloc(nb_cci_ports, sizeof(*ports), GFP_KERNEL);
	if (!ports)
		return -ENOMEM;