diff options
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/include/asm/socket.h | 3 | ||||
-rw-r--r-- | arch/parisc/kernel/time.c | 6 |
2 files changed, 4 insertions, 5 deletions
diff --git a/arch/parisc/include/asm/socket.h b/arch/parisc/include/asm/socket.h index 225b7d6a1a0a..d28c51b61067 100644 --- a/arch/parisc/include/asm/socket.h +++ b/arch/parisc/include/asm/socket.h | |||
@@ -61,6 +61,9 @@ | |||
61 | 61 | ||
62 | #define SO_RXQ_OVFL 0x4021 | 62 | #define SO_RXQ_OVFL 0x4021 |
63 | 63 | ||
64 | #define SO_WIFI_STATUS 0x4022 | ||
65 | #define SCM_WIFI_STATUS SO_WIFI_STATUS | ||
66 | |||
64 | /* O_NONBLOCK clashes with the bits used for socket types. Therefore we | 67 | /* O_NONBLOCK clashes with the bits used for socket types. Therefore we |
65 | * have to define SOCK_NONBLOCK to a different value here. | 68 | * have to define SOCK_NONBLOCK to a different value here. |
66 | */ | 69 | */ |
diff --git a/arch/parisc/kernel/time.c b/arch/parisc/kernel/time.c index 45b7389d77aa..7c0774397b89 100644 --- a/arch/parisc/kernel/time.c +++ b/arch/parisc/kernel/time.c | |||
@@ -198,8 +198,6 @@ static struct clocksource clocksource_cr16 = { | |||
198 | .rating = 300, | 198 | .rating = 300, |
199 | .read = read_cr16, | 199 | .read = read_cr16, |
200 | .mask = CLOCKSOURCE_MASK(BITS_PER_LONG), | 200 | .mask = CLOCKSOURCE_MASK(BITS_PER_LONG), |
201 | .mult = 0, /* to be set */ | ||
202 | .shift = 22, | ||
203 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | 201 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
204 | }; | 202 | }; |
205 | 203 | ||
@@ -270,7 +268,5 @@ void __init time_init(void) | |||
270 | 268 | ||
271 | /* register at clocksource framework */ | 269 | /* register at clocksource framework */ |
272 | current_cr16_khz = PAGE0->mem_10msec/10; /* kHz */ | 270 | current_cr16_khz = PAGE0->mem_10msec/10; /* kHz */ |
273 | clocksource_cr16.mult = clocksource_khz2mult(current_cr16_khz, | 271 | clocksource_register_khz(&clocksource_cr16, current_cr16_khz); |
274 | clocksource_cr16.shift); | ||
275 | clocksource_register(&clocksource_cr16); | ||
276 | } | 272 | } |