lkml.org 
[lkml]   [2000]   [Aug]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subjectpatchlet: arch/ppc/kernel/pmac_time.c
Hello,

here's a trivial patch against 2.4.0-test6 for the PowerMac-port.
It inserts some config-#ifdefs which have been missing for some
"test"-versions.

- Bernd--- v2.4.0-test6/linux/arch/ppc/kernel/pmac_time.c.orig Sun Aug 13 15:14:31 2000
+++ v2.4.0-test6/linux/arch/ppc/kernel/pmac_time.c Sun Aug 13 15:16:17 2000
@@ -118,11 +118,14 @@

int pmac_set_rtc_time(unsigned long nowtime)
{
+#ifdef CONFIG_ADB
struct adb_request req;
+#endif

nowtime += RTC_OFFSET - sys_tz.tz_minuteswest * 60;

switch (sys_ctrler) {
+#ifdef CONFIG_ADB_CUDA
case SYS_CTRLER_CUDA:
if (cuda_request(&req, NULL, 6, CUDA_PACKET, CUDA_SET_TIME,
nowtime >> 24, nowtime >> 16, nowtime >> 8, nowtime) < 0)
@@ -133,6 +136,8 @@
printk(KERN_ERR "pmac_set_rtc_time: got %d byte reply\n",
req.reply_len);
return 1;
+#endif /* CONFIG_ADB_CUDA */
+#ifdef CONFIG_ADB_PMU
case SYS_CTRLER_PMU:
if (pmu_request(&req, NULL, 5, PMU_SET_RTC,
nowtime >> 24, nowtime >> 16, nowtime >> 8, nowtime) < 0)
@@ -143,6 +148,7 @@
printk(KERN_ERR "pmac_set_rtc_time: got %d byte reply\n",
req.reply_len);
return 1;
+#endif /* CONFIG_ADB_PMU */
default:
return 0;
}
\
 
 \ /
  Last update: 2005-03-22 13:58    [W:0.041 / U:0.080 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site