File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ static void print_err(char *s)
101
101
* @input_size: length of the input buffer
102
102
* @outbuf: output buffer
103
103
* @output_size: length of the output buffer
104
- * @skip number of output bytes to ignore
104
+ * @_skip: number of output bytes to ignore
105
105
*
106
106
* This function takes compressed data from inbuf, decompresses and write it to
107
107
* outbuf. Once output_size bytes are written to the output buffer, or the
Original file line number Diff line number Diff line change @@ -55,6 +55,8 @@ static cpumask_t of_spin_map;
55
55
/**
56
56
* smp_startup_cpu() - start the given cpu
57
57
*
58
+ * @lcpu: Logical CPU ID of the CPU to be started.
59
+ *
58
60
* At boot time, there is nothing to do for primary threads which were
59
61
* started from Open Firmware. For anything else, call RTAS with the
60
62
* appropriate start location.
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ struct gtm {
77
77
static LIST_HEAD (gtms );
78
78
79
79
/**
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
81
81
* Context: non-IRQ
82
82
*
83
83
* This function reserves GTM timer for later use. It returns gtm_timer
@@ -110,7 +110,7 @@ struct gtm_timer *gtm_get_timer16(void)
110
110
EXPORT_SYMBOL (gtm_get_timer16 );
111
111
112
112
/**
113
- * gtm_get_specific_timer - request specific GTM timer
113
+ * gtm_get_specific_timer16 - request specific GTM timer
114
114
* @gtm: specific GTM, pass here GTM's device_node->data
115
115
* @timer: specific timer number, Timer1 is 0.
116
116
* Context: non-IRQ
@@ -276,7 +276,7 @@ EXPORT_SYMBOL(gtm_set_timer16);
276
276
* crop precision of the "usec" argument, thus usec is limited to 16 bits
277
277
* (single timer width).
278
278
*/
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 )
280
280
{
281
281
/* quite obvious, frequency which is enough for µSec precision */
282
282
const int freq = 1000000 ;
You can’t perform that action at this time.
0 commit comments