net/wan/fsl_ucc_hdlc: fix muram allocation error
authorHolger Brunck <[email protected]>
Mon, 22 May 2017 07:31:15 +0000 (09:31 +0200)
committerDavid S. Miller <[email protected]>
Mon, 22 May 2017 16:28:45 +0000 (12:28 -0400)
sizeof(priv->ucc_pram) is 4 as it is the size of a pointer, but we want
to reserve space for the struct ucc_hdlc_param.

Signed-off-by: Holger Brunck <[email protected]>
Cc: Zhao Qiang <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/wan/fsl_ucc_hdlc.c

index e9b2d687f150fc0d01d9d96dddc3044e20bd8930..33df76405b869a8504415fc8529222616bac9586 100644 (file)
@@ -189,7 +189,7 @@ static int uhdlc_init(struct ucc_hdlc_private *priv)
        }
 
        /* Alloc parameter ram for ucc hdlc */
-       priv->ucc_pram_offset = qe_muram_alloc(sizeof(priv->ucc_pram),
+       priv->ucc_pram_offset = qe_muram_alloc(sizeof(struct ucc_hdlc_param),
                                ALIGNMENT_OF_UCC_HDLC_PRAM);
 
        if (priv->ucc_pram_offset < 0) {