2019-05-30 02:57:47 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2006-09-06 23:42:08 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2006 PA Semi, Inc
|
|
|
|
*
|
|
|
|
* Maintained by: Olof Johansson <olof@lixom.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/time.h>
|
|
|
|
|
|
|
|
#include <asm/time.h>
|
|
|
|
|
2018-04-23 11:36:40 +03:00
|
|
|
time64_t __init pas_get_boot_time(void)
|
2006-09-06 23:42:08 +04:00
|
|
|
{
|
|
|
|
/* Let's just return a fake date right now */
|
2018-04-23 11:36:40 +03:00
|
|
|
return mktime64(2006, 1, 1, 12, 0, 0);
|
2006-09-06 23:42:08 +04:00
|
|
|
}
|