fsbl.patch 567 B

123456789101112131415161718
  1. --- fsbl_hooks.c.old
  2. +++ fsbl_hooks.c
  3. @@ -34,6 +34,7 @@
  4. /************************** Function Prototypes ******************************/
  5. +u32 SetMacAddress();
  6. /******************************************************************************
  7. * This function is the hook which will be called before the bitstream download.
  8. @@ -112,6 +113,7 @@ u32 FsblHookBeforeHandoff(void)
  9. * Errors to be stored in the status variable and returned
  10. */
  11. fsbl_printf(DEBUG_INFO,"In FsblHookBeforeHandoff function \r\n");
  12. + Status = SetMacAddress();
  13. return (Status);
  14. }