From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Wed, 19 Mar 2008 13:11:38 +0100 Subject: [U-Boot-Users] [PATCH] Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP. In-Reply-To: <1205874767-19726-1-git-send-email-wd@denx.de> References: <1205874767-19726-1-git-send-email-wd@denx.de> Message-ID: <20080319121138.GA14030@game.jcrosoft.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 22:12 Tue 18 Mar , Wolfgang Denk wrote: > From: Yuri Tikhonov > > Signed-off-by: Dmitry Rakhchev > --- > post/tests.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/post/tests.c b/post/tests.c > index 698f85c..ed4ef2b 100644 > --- a/post/tests.c > +++ b/post/tests.c > @@ -225,7 +225,7 @@ struct post_test post_list[] = > CFG_POST_DSP > }, > #endif > -#if CONFIG_POST & CFG_POST_DSP > +#if CONFIG_POST & CFG_POST_CODEC I think It will be nice to move it to a ifdef style as done for the commands and understand it will not be simple when I read the implementation. Best Regards, J.