From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jim Lentz Date: Fri, 16 Dec 2011 08:48:21 -0500 Subject: [U-Boot] fsl_esdhc.c bug Message-ID: <4EEB4C25.2070005@zhone.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de All, There is a bug rendering SDCard support useless on Freescale esdhc controller. File drivers/mmc/fsl_esdhc.c, function esdhc_pio_read_write *change: * struct fsl_esdhc *regs = mmc->priv; *to:* struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv; volatile struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; How do I/we get this into the mainstream? I cloned the repository, and have it fixed. First time using git, and trying to contribute to OpenSource too. Regards, Jim