Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. /* Wait for the power to come up */
  2. while (!is_cpu_powered()) {
  3. if (timeout-- == 0)
  4. printf("CPU failed to power up!\n");
  5. else
  6. udelay(10);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement