Skip to content

Commit 4799c7c

Browse files
author
Fox Snowpatch
committed
1 parent 4db4221 commit 4799c7c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

arch/powerpc/boot/decompress.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ static void print_err(char *s)
101101
* @input_size: length of the input buffer
102102
* @outbuf: output buffer
103103
* @output_size: length of the output buffer
104-
* @skip number of output bytes to ignore
104+
* @_skip: number of output bytes to ignore
105105
*
106106
* This function takes compressed data from inbuf, decompresses and write it to
107107
* outbuf. Once output_size bytes are written to the output buffer, or the

arch/powerpc/platforms/cell/smp.c

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ static cpumask_t of_spin_map;
5555
/**
5656
* smp_startup_cpu() - start the given cpu
5757
*
58+
* @lcpu: Logical CPU ID of the CPU to be started.
59+
*
5860
* At boot time, there is nothing to do for primary threads which were
5961
* started from Open Firmware. For anything else, call RTAS with the
6062
* appropriate start location.

arch/powerpc/sysdev/fsl_gtm.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ struct gtm {
7777
static LIST_HEAD(gtms);
7878

7979
/**
80-
* gtm_get_timer - request GTM timer to use it with the rest of GTM API
80+
* gtm_get_timer16 - request GTM timer to use it with the rest of GTM API
8181
* Context: non-IRQ
8282
*
8383
* This function reserves GTM timer for later use. It returns gtm_timer
@@ -110,7 +110,7 @@ struct gtm_timer *gtm_get_timer16(void)
110110
EXPORT_SYMBOL(gtm_get_timer16);
111111

112112
/**
113-
* gtm_get_specific_timer - request specific GTM timer
113+
* gtm_get_specific_timer16 - request specific GTM timer
114114
* @gtm: specific GTM, pass here GTM's device_node->data
115115
* @timer: specific timer number, Timer1 is 0.
116116
* Context: non-IRQ
@@ -276,7 +276,7 @@ EXPORT_SYMBOL(gtm_set_timer16);
276276
* crop precision of the "usec" argument, thus usec is limited to 16 bits
277277
* (single timer width).
278278
*/
279-
int gtm_set_exact_timer16(struct gtm_timer *tmr, u16 usec, bool reload)
279+
int gtm_set_exact_utimer16(struct gtm_timer *tmr, u16 usec, bool reload)
280280
{
281281
/* quite obvious, frequency which is enough for µSec precision */
282282
const int freq = 1000000;

0 commit comments

Comments
 (0)