1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
26 lines
975 B
C
26 lines
975 B
C
/*
|
|
* Copyright (c) 2000 Mike Corrigan <mikejc@us.ibm.com>
|
|
* Copyright (c) 1999-2000 Grant Erickson <grant@lcse.umn.edu>
|
|
*
|
|
* Module name: as400_setup.h
|
|
*
|
|
* Description:
|
|
* Architecture- / platform-specific boot-time initialization code for
|
|
* the IBM AS/400 LPAR. Adapted from original code by Grant Erickson and
|
|
* code by Gary Thomas, Cort Dougan <cort@cs.nmt.edu>, and Dan Malek
|
|
* <dan@netx4.com>.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version
|
|
* 2 of the License, or (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef __ISERIES_SETUP_H__
|
|
#define __ISERIES_SETUP_H__
|
|
|
|
extern void iSeries_get_boot_time(struct rtc_time *tm);
|
|
extern int iSeries_set_rtc_time(struct rtc_time *tm);
|
|
extern void iSeries_get_rtc_time(struct rtc_time *tm);
|
|
|
|
#endif /* __ISERIES_SETUP_H__ */
|