11e76875eSOlof Johansson /*
21e76875eSOlof Johansson  * Copyright (C) 2006 PA Semi, Inc
31e76875eSOlof Johansson  *
41e76875eSOlof Johansson  * Maintained by: Olof Johansson <olof@lixom.net>
51e76875eSOlof Johansson  *
61e76875eSOlof Johansson  * This program is free software; you can redistribute it and/or modify
71e76875eSOlof Johansson  * it under the terms of the GNU General Public License version 2 as
81e76875eSOlof Johansson  * published by the Free Software Foundation.
91e76875eSOlof Johansson  *
101e76875eSOlof Johansson  * This program is distributed in the hope that it will be useful,
111e76875eSOlof Johansson  * but WITHOUT ANY WARRANTY; without even the implied warranty of
121e76875eSOlof Johansson  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
131e76875eSOlof Johansson  * GNU General Public License for more details.
141e76875eSOlof Johansson  *
151e76875eSOlof Johansson  * You should have received a copy of the GNU General Public License
161e76875eSOlof Johansson  * along with this program; if not, write to the Free Software
171e76875eSOlof Johansson  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
181e76875eSOlof Johansson  */
191e76875eSOlof Johansson 
201e76875eSOlof Johansson #include <linux/config.h>
211e76875eSOlof Johansson #include <linux/time.h>
221e76875eSOlof Johansson 
231e76875eSOlof Johansson #include <asm/time.h>
241e76875eSOlof Johansson 
251e76875eSOlof Johansson unsigned long __init pas_get_boot_time(void)
261e76875eSOlof Johansson {
271e76875eSOlof Johansson 	/* Let's just return a fake date right now */
281e76875eSOlof Johansson 	return mktime(2006, 1, 1, 12, 0, 0);
291e76875eSOlof Johansson }
30