build.ck 514 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*++
  2. Copyright (c) 2016 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. RK808
  5. Abstract:
  6. This module is the driver for the RK808 Power Management IC used in
  7. platforms like the ASUS C201 Chromebook (Veyron Speedy).
  8. Author:
  9. Evan Green 4-Apr-2016
  10. Environment:
  11. Kernel
  12. --*/
  13. function build() {
  14. name = "rk808";
  15. sources = [
  16. "rk808.c"
  17. ];
  18. drv = {
  19. "label": name,
  20. "inputs": sources,
  21. };
  22. entries = driver(drv);
  23. return entries;
  24. }
  25. return build();