Merge branch '2023-11-16-assorted-updates' into next

- squashfs improvements, remove common.h in some places, assorted code
  fixes, fix a few CONFIG symbol names in Kconfig files, bring in
  linux's <linux/time.h> conversion functions, poplar updates, bcb
  improvements.
This commit is contained in:
Tom Rini
2023-11-17 08:38:05 -05:00
71 changed files with 336 additions and 263 deletions

View File

@@ -11,6 +11,15 @@
#define _REENT_ONLY
#define MSEC_PER_SEC 1000L
#define USEC_PER_MSEC 1000L
#define NSEC_PER_USEC 1000L
#define NSEC_PER_MSEC 1000000L
#define USEC_PER_SEC 1000000L
#define NSEC_PER_SEC 1000000000L
#define PSEC_PER_SEC 1000000000000LL
#define FSEC_PER_SEC 1000000000000000LL
#define SECSPERMIN 60L
#define MINSPERHOUR 60L
#define HOURSPERDAY 24L