diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-23 01:20:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-23 01:20:46 -0500 |
commit | 2e6e33bab6e1996a5dec9108fb467b52b841e7a8 (patch) | |
tree | 6b98b15c2fe7899cdeb2453589cdee00f7853492 /drivers | |
parent | b7ad6d75028d021362221d9b2db19fcff995c3f8 (diff) | |
parent | b88a0b1d5560cf1959c1565617e460a45c688a08 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
* git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc: (78 commits)
[PATCH] powerpc: Add FSL SEC node to documentation
[PATCH] macintosh: tidy-up driver_register() return values
[PATCH] powerpc: tidy-up of_register_driver()/driver_register() return values
[PATCH] powerpc: via-pmu warning fix
[PATCH] macintosh: cleanup the use of i2c headers
[PATCH] powerpc: dont allow old RTC to be selected
[PATCH] powerpc: make powerbook_sleep_grackle static
[PATCH] powerpc: Fix warning in add_memory
[PATCH] powerpc: update mailing list addresses
[PATCH] powerpc: Remove calculation of io hole
[PATCH] powerpc: iseries: Add bootargs to /chosen
[PATCH] powerpc: iseries: Add /system-id, /model and /compatible
[PATCH] powerpc: Add strne2a() to convert a string from EBCDIC to ASCII
[PATCH] powerpc: iseries: Make more stuff static in platforms/iseries/mf.c
[PATCH] powerpc: iseries: Remove pointless iSeries_(restart|power_off|halt)
[PATCH] powerpc: iseries: mf related cleanups
[PATCH] powerpc: Replace platform_is_lpar() with a firmware feature
[PATCH] powerpc: trivial: Cleanup whitespace in cputable.h
[PATCH] powerpc: Remove unused iommu_off logic from pSeries_init_early()
[PATCH] powerpc: Unconfuse htab_bolt_mapping() callers
...
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/Kconfig | 2 | ||||
-rw-r--r-- | drivers/char/hvcs.c | 9 | ||||
-rw-r--r-- | drivers/macintosh/macio_asic.c | 5 | ||||
-rw-r--r-- | drivers/macintosh/smu.c | 4 | ||||
-rw-r--r-- | drivers/macintosh/therm_pm72.c | 2 | ||||
-rw-r--r-- | drivers/macintosh/via-pmu.c | 5 | ||||
-rw-r--r-- | drivers/macintosh/windfarm_lm75_sensor.c | 1 | ||||
-rw-r--r-- | drivers/macintosh/windfarm_max6690_sensor.c | 1 | ||||
-rw-r--r-- | drivers/macintosh/windfarm_smu_sat.c | 1 | ||||
-rw-r--r-- | drivers/net/Kconfig | 1 |
10 files changed, 12 insertions, 19 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 05ba410682a3..b524f5ba78a9 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig | |||
@@ -695,7 +695,7 @@ config NVRAM | |||
695 | 695 | ||
696 | config RTC | 696 | config RTC |
697 | tristate "Enhanced Real Time Clock Support" | 697 | tristate "Enhanced Real Time Clock Support" |
698 | depends on !PPC32 && !PARISC && !IA64 && !M68K && (!SPARC || PCI) && !FRV | 698 | depends on !PPC && !PARISC && !IA64 && !M68K && (!SPARC || PCI) && !FRV |
699 | ---help--- | 699 | ---help--- |
700 | If you say Y here and create a character special file /dev/rtc with | 700 | If you say Y here and create a character special file /dev/rtc with |
701 | major number 10 and minor number 135 using mknod ("man mknod"), you | 701 | major number 10 and minor number 135 using mknod ("man mknod"), you |
diff --git a/drivers/char/hvcs.c b/drivers/char/hvcs.c index 831eb4e8d9d3..f7ac31856572 100644 --- a/drivers/char/hvcs.c +++ b/drivers/char/hvcs.c | |||
@@ -118,7 +118,7 @@ | |||
118 | * the hvcs_final_close() function in order to get it out of the spinlock. | 118 | * the hvcs_final_close() function in order to get it out of the spinlock. |
119 | * Rearranged hvcs_close(). Cleaned up some printks and did some housekeeping | 119 | * Rearranged hvcs_close(). Cleaned up some printks and did some housekeeping |
120 | * on the changelog. Removed local CLC_LENGTH and used HVCS_CLC_LENGTH from | 120 | * on the changelog. Removed local CLC_LENGTH and used HVCS_CLC_LENGTH from |
121 | * arch/ppc64/hvcserver.h. | 121 | * include/asm-powerpc/hvcserver.h |
122 | * | 122 | * |
123 | * 1.3.2 -> 1.3.3 Replaced yield() in hvcs_close() with tty_wait_until_sent() to | 123 | * 1.3.2 -> 1.3.3 Replaced yield() in hvcs_close() with tty_wait_until_sent() to |
124 | * prevent possible lockup with realtime scheduling as similarily pointed out by | 124 | * prevent possible lockup with realtime scheduling as similarily pointed out by |
@@ -168,9 +168,10 @@ MODULE_VERSION(HVCS_DRIVER_VERSION); | |||
168 | 168 | ||
169 | /* | 169 | /* |
170 | * The hcall interface involves putting 8 chars into each of two registers. | 170 | * The hcall interface involves putting 8 chars into each of two registers. |
171 | * We load up those 2 registers (in arch/ppc64/hvconsole.c) by casting char[16] | 171 | * We load up those 2 registers (in arch/powerpc/platforms/pseries/hvconsole.c) |
172 | * to long[2]. It would work without __ALIGNED__, but a little (tiny) bit | 172 | * by casting char[16] to long[2]. It would work without __ALIGNED__, but a |
173 | * slower because an unaligned load is slower than aligned load. | 173 | * little (tiny) bit slower because an unaligned load is slower than aligned |
174 | * load. | ||
174 | */ | 175 | */ |
175 | #define __ALIGNED__ __attribute__((__aligned__(8))) | 176 | #define __ALIGNED__ __attribute__((__aligned__(8))) |
176 | 177 | ||
diff --git a/drivers/macintosh/macio_asic.c b/drivers/macintosh/macio_asic.c index 69596f6438e9..431bd37225a1 100644 --- a/drivers/macintosh/macio_asic.c +++ b/drivers/macintosh/macio_asic.c | |||
@@ -550,15 +550,12 @@ static void macio_pci_add_devices(struct macio_chip *chip) | |||
550 | */ | 550 | */ |
551 | int macio_register_driver(struct macio_driver *drv) | 551 | int macio_register_driver(struct macio_driver *drv) |
552 | { | 552 | { |
553 | int count = 0; | ||
554 | |||
555 | /* initialize common driver fields */ | 553 | /* initialize common driver fields */ |
556 | drv->driver.name = drv->name; | 554 | drv->driver.name = drv->name; |
557 | drv->driver.bus = &macio_bus_type; | 555 | drv->driver.bus = &macio_bus_type; |
558 | 556 | ||
559 | /* register with core */ | 557 | /* register with core */ |
560 | count = driver_register(&drv->driver); | 558 | return driver_register(&drv->driver); |
561 | return count ? count : 1; | ||
562 | } | 559 | } |
563 | 560 | ||
564 | /** | 561 | /** |
diff --git a/drivers/macintosh/smu.c b/drivers/macintosh/smu.c index db2ae71d07ef..4eb05d7143d8 100644 --- a/drivers/macintosh/smu.c +++ b/drivers/macintosh/smu.c | |||
@@ -629,8 +629,6 @@ static struct of_platform_driver smu_of_platform_driver = | |||
629 | 629 | ||
630 | static int __init smu_init_sysfs(void) | 630 | static int __init smu_init_sysfs(void) |
631 | { | 631 | { |
632 | int rc; | ||
633 | |||
634 | /* | 632 | /* |
635 | * Due to sysfs bogosity, a sysdev is not a real device, so | 633 | * Due to sysfs bogosity, a sysdev is not a real device, so |
636 | * we should in fact create both if we want sysdev semantics | 634 | * we should in fact create both if we want sysdev semantics |
@@ -639,7 +637,7 @@ static int __init smu_init_sysfs(void) | |||
639 | * I'm a bit too far from figuring out how that works with those | 637 | * I'm a bit too far from figuring out how that works with those |
640 | * new chipsets, but that will come back and bite us | 638 | * new chipsets, but that will come back and bite us |
641 | */ | 639 | */ |
642 | rc = of_register_driver(&smu_of_platform_driver); | 640 | of_register_driver(&smu_of_platform_driver); |
643 | return 0; | 641 | return 0; |
644 | } | 642 | } |
645 | 643 | ||
diff --git a/drivers/macintosh/therm_pm72.c b/drivers/macintosh/therm_pm72.c index 4f50ee5767a2..231146f439dd 100644 --- a/drivers/macintosh/therm_pm72.c +++ b/drivers/macintosh/therm_pm72.c | |||
@@ -104,7 +104,6 @@ | |||
104 | #include <linux/kernel.h> | 104 | #include <linux/kernel.h> |
105 | #include <linux/delay.h> | 105 | #include <linux/delay.h> |
106 | #include <linux/sched.h> | 106 | #include <linux/sched.h> |
107 | #include <linux/i2c.h> | ||
108 | #include <linux/slab.h> | 107 | #include <linux/slab.h> |
109 | #include <linux/init.h> | 108 | #include <linux/init.h> |
110 | #include <linux/spinlock.h> | 109 | #include <linux/spinlock.h> |
@@ -113,7 +112,6 @@ | |||
113 | #include <linux/reboot.h> | 112 | #include <linux/reboot.h> |
114 | #include <linux/kmod.h> | 113 | #include <linux/kmod.h> |
115 | #include <linux/i2c.h> | 114 | #include <linux/i2c.h> |
116 | #include <linux/i2c-dev.h> | ||
117 | #include <asm/prom.h> | 115 | #include <asm/prom.h> |
118 | #include <asm/machdep.h> | 116 | #include <asm/machdep.h> |
119 | #include <asm/io.h> | 117 | #include <asm/io.h> |
diff --git a/drivers/macintosh/via-pmu.c b/drivers/macintosh/via-pmu.c index 4a478eb0e27d..4f5f3abc9cb3 100644 --- a/drivers/macintosh/via-pmu.c +++ b/drivers/macintosh/via-pmu.c | |||
@@ -161,7 +161,9 @@ static int drop_interrupts; | |||
161 | #if defined(CONFIG_PM) && defined(CONFIG_PPC32) | 161 | #if defined(CONFIG_PM) && defined(CONFIG_PPC32) |
162 | static int option_lid_wakeup = 1; | 162 | static int option_lid_wakeup = 1; |
163 | #endif /* CONFIG_PM && CONFIG_PPC32 */ | 163 | #endif /* CONFIG_PM && CONFIG_PPC32 */ |
164 | #if (defined(CONFIG_PM)&&defined(CONFIG_PPC32))||defined(CONFIG_PMAC_BACKLIGHT) | ||
164 | static int sleep_in_progress; | 165 | static int sleep_in_progress; |
166 | #endif | ||
165 | static unsigned long async_req_locks; | 167 | static unsigned long async_req_locks; |
166 | static unsigned int pmu_irq_stats[11]; | 168 | static unsigned int pmu_irq_stats[11]; |
167 | 169 | ||
@@ -2201,8 +2203,7 @@ pmac_wakeup_devices(void) | |||
2201 | #define GRACKLE_NAP (1<<4) | 2203 | #define GRACKLE_NAP (1<<4) |
2202 | #define GRACKLE_SLEEP (1<<3) | 2204 | #define GRACKLE_SLEEP (1<<3) |
2203 | 2205 | ||
2204 | int | 2206 | static int powerbook_sleep_grackle(void) |
2205 | powerbook_sleep_grackle(void) | ||
2206 | { | 2207 | { |
2207 | unsigned long save_l2cr; | 2208 | unsigned long save_l2cr; |
2208 | unsigned short pmcr1; | 2209 | unsigned short pmcr1; |
diff --git a/drivers/macintosh/windfarm_lm75_sensor.c b/drivers/macintosh/windfarm_lm75_sensor.c index 423bfa2432c0..3f7967feaf5b 100644 --- a/drivers/macintosh/windfarm_lm75_sensor.c +++ b/drivers/macintosh/windfarm_lm75_sensor.c | |||
@@ -15,7 +15,6 @@ | |||
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/wait.h> | 16 | #include <linux/wait.h> |
17 | #include <linux/i2c.h> | 17 | #include <linux/i2c.h> |
18 | #include <linux/i2c-dev.h> | ||
19 | #include <asm/prom.h> | 18 | #include <asm/prom.h> |
20 | #include <asm/machdep.h> | 19 | #include <asm/machdep.h> |
21 | #include <asm/io.h> | 20 | #include <asm/io.h> |
diff --git a/drivers/macintosh/windfarm_max6690_sensor.c b/drivers/macintosh/windfarm_max6690_sensor.c index 8e99d408fddd..eae1189d6c41 100644 --- a/drivers/macintosh/windfarm_max6690_sensor.c +++ b/drivers/macintosh/windfarm_max6690_sensor.c | |||
@@ -11,7 +11,6 @@ | |||
11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
12 | #include <linux/slab.h> | 12 | #include <linux/slab.h> |
13 | #include <linux/i2c.h> | 13 | #include <linux/i2c.h> |
14 | #include <linux/i2c-dev.h> | ||
15 | #include <asm/prom.h> | 14 | #include <asm/prom.h> |
16 | #include <asm/pmac_low_i2c.h> | 15 | #include <asm/pmac_low_i2c.h> |
17 | 16 | ||
diff --git a/drivers/macintosh/windfarm_smu_sat.c b/drivers/macintosh/windfarm_smu_sat.c index 24e51d5e97fc..e295a07a1ebc 100644 --- a/drivers/macintosh/windfarm_smu_sat.c +++ b/drivers/macintosh/windfarm_smu_sat.c | |||
@@ -13,7 +13,6 @@ | |||
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/wait.h> | 14 | #include <linux/wait.h> |
15 | #include <linux/i2c.h> | 15 | #include <linux/i2c.h> |
16 | #include <linux/i2c-dev.h> | ||
17 | #include <asm/semaphore.h> | 16 | #include <asm/semaphore.h> |
18 | #include <asm/prom.h> | 17 | #include <asm/prom.h> |
19 | #include <asm/smu.h> | 18 | #include <asm/smu.h> |
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 00993e8ba589..e20b849a22e8 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -2172,6 +2172,7 @@ config BNX2 | |||
2172 | config SPIDER_NET | 2172 | config SPIDER_NET |
2173 | tristate "Spider Gigabit Ethernet driver" | 2173 | tristate "Spider Gigabit Ethernet driver" |
2174 | depends on PCI && PPC_CELL | 2174 | depends on PCI && PPC_CELL |
2175 | select FW_LOADER | ||
2175 | help | 2176 | help |
2176 | This driver supports the Gigabit Ethernet chips present on the | 2177 | This driver supports the Gigabit Ethernet chips present on the |
2177 | Cell Processor-Based Blades from IBM. | 2178 | Cell Processor-Based Blades from IBM. |