diff options
| author | Tom Rini <trini@ti.com> | 2012-04-13 12:20:02 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-05-15 08:31:27 +0200 | 
| commit | 60bd10df8a3d553962b9f6704e055c2475a2414a (patch) | |
| tree | 544da5fbdf48a131e510dbfbd3048d41835e74b8 | |
| parent | b8f4a728e6ece65857e855feaa3aac7996ef8d5c (diff) | |
| download | olio-uboot-2014.01-60bd10df8a3d553962b9f6704e055c2475a2414a.tar.xz olio-uboot-2014.01-60bd10df8a3d553962b9f6704e055c2475a2414a.zip | |
omap730p2: Remove empty misc_init_r
We had a do-nothing misc_init_r, remove along with CONFIG_MISC_INIT_R
Signed-off-by: Tom Rini <trini@ti.com>
| -rw-r--r-- | board/ti/omap730p2/omap730p2.c | 6 | ||||
| -rw-r--r-- | include/configs/omap730p2.h | 2 | 
2 files changed, 0 insertions, 8 deletions
| diff --git a/board/ti/omap730p2/omap730p2.c b/board/ti/omap730p2/omap730p2.c index 954ced5ef..36204b2c8 100644 --- a/board/ti/omap730p2/omap730p2.c +++ b/board/ti/omap730p2/omap730p2.c @@ -129,12 +129,6 @@ int board_init (void)  	return 0;  } -int misc_init_r (void) -{ -	/* currently empty */ -	return (0); -} -  /******************************   Routine:   Description: diff --git a/include/configs/omap730p2.h b/include/configs/omap730p2.h index 26e7e1f1e..f7900e0d8 100644 --- a/include/configs/omap730p2.h +++ b/include/configs/omap730p2.h @@ -49,8 +49,6 @@  #undef CONFIG_USE_IRQ			     /* we don't need IRQ/FIQ stuff */ -#define CONFIG_MISC_INIT_R -  #define CONFIG_CMDLINE_TAG	   1	     /* enable passing of ATAGs	 */  #define CONFIG_SETUP_MEMORY_TAGS   1 |