Re: [U-Boot] [PATCH v3 04/16] lib: add mktime64() for linux compatibility

2019-12-06 Thread Tom Rini
On Wed, Nov 13, 2019 at 09:44:50AM +0900, AKASHI Takahiro wrote: > This function will be used in lib/crypto/x509_cert_parser.c, which > will also be imported from linux code in a later commit. > > Signed-off-by: AKASHI Takahiro Applied to u-boot/master, thanks! -- Tom signature.asc Descrip

[U-Boot] [PATCH v3 04/16] lib: add mktime64() for linux compatibility

2019-11-12 Thread AKASHI Takahiro
This function will be used in lib/crypto/x509_cert_parser.c, which will also be imported from linux code in a later commit. Signed-off-by: AKASHI Takahiro --- include/linux/time.h | 10 ++ lib/date.c | 20 2 files changed, 30 insertions(+) diff --git a/in