Path: blob/master/arch/powerpc/platforms/pasemi/time.c
10819 views
/*1* Copyright (C) 2006 PA Semi, Inc2*3* Maintained by: Olof Johansson <[email protected]>4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License version 2 as7* published by the Free Software Foundation.8*9* This program is distributed in the hope that it will be useful,10* but WITHOUT ANY WARRANTY; without even the implied warranty of11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12* GNU General Public License for more details.13*14* You should have received a copy of the GNU General Public License15* along with this program; if not, write to the Free Software16* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA17*/1819#include <linux/time.h>2021#include <asm/time.h>2223unsigned long __init pas_get_boot_time(void)24{25/* Let's just return a fake date right now */26return mktime(2006, 1, 1, 12, 0, 0);27}282930