[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1276199806.3004.3.camel@satguru.bonn.nu>
Date: Thu, 10 Jun 2010 21:56:46 +0200
From: Jonas Bonn <jonas@...thpole.se>
To: netdev@...r.kernel.org
Cc: davem@...emloft.net
Subject: Re: [PATCH] ethoc: Write bus addresses to registers
Hmm... found a little problem here... this bit is dependent on another
patch that should be in there before it... I'd appreciate comment on the
approach of the whole thing and then I'll submit the missing bits in the
correct order. Thanks and sorry for the confusion...
/Jonas
See my comment below...
> @@ -978,6 +989,12 @@ static int ethoc_probe(struct platform_device *pdev)
> priv->dma_alloc = buffer_size;
> }
---> Missing bits are here: calculate number of transmission buffers...
>
> + priv->vma = devm_kzalloc(&pdev->dev, priv->num_tx*sizeof(void*), GFP_KERNEL);
---> And here: should be
priv->vma = devm_kzalloc(&pdev->dev, (priv->num_tx
+priv->num_rx)*sizeof(void*), GFP_KERNEL);
> + if (!priv->vma) {
> + ret = -ENOMEM;
> + goto error;
> + }
> +
> /* Allow the platform setup code to pass in a MAC address. */
> if (pdev->dev.platform_data) {
> struct ethoc_platform_data *pdata =
Download attachment "signature.asc" of type "application/pgp-signature" (199 bytes)
Powered by blists - more mailing lists