From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gleb Natapov Date: Tue, 2 Sep 2003 16:23:20 +0300 Subject: [U-Boot-Users] [PATCH] cache_8xx.S doesn't support MPC824X Message-ID: <20030902132320.GL10453@nbase.co.il> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hello, File cache_8xx.S claims it supports cache testing of MPC824X, but it doesn't even compile. Attached patch solves this. -- Gleb. -------------- next part -------------- diff -ur u-boot/post/cache_8xx.S u-boot.p/post/cache_8xx.S --- u-boot/post/cache_8xx.S 2003-04-10 14:18:21.000000000 +0300 +++ u-boot.p/post/cache_8xx.S 2003-09-02 15:23:05.000000000 +0300 @@ -27,8 +27,7 @@ defined(CONFIG_MPC850) || \ defined(CONFIG_MPC855) || \ defined(CONFIG_MPC860) || \ - defined(CONFIG_MPC862) || \ - defined(CONFIG_MPC824X) + defined(CONFIG_MPC862) #include #include @@ -491,6 +490,6 @@ mtlr r0 blr -#endif /* CONFIG_MPC823 || MPC850 || MPC855 || MPC860 || MPC824X */ +#endif /* CONFIG_MPC823 || MPC850 || MPC855 || MPC860 */ #endif /* CONFIG_POST & CFG_POST_CACHE */ #endif /* CONFIG_POST */