Skip to content
This repository was archived by the owner on Jun 30, 2023. It is now read-only.

Commit ef5bf69

Browse files
committed
linux_src_doc: updated with last kernel-doc bugfix
rebuild of linux_src_doc with patched kernel-doc parser: return42/linuxdoc@518b4ef Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
1 parent 2ff22cf commit ef5bf69

File tree

838 files changed

+9003
-4437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

838 files changed

+9003
-4437
lines changed

linux_src_doc/arch/arm/include/asm/hardware/iop_adma_h.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,11 @@ Definition
135135
u16 idx;
136136
struct list_head tx_list;
137137
struct dma_async_tx_descriptor async_tx;
138-
union {unnamed_union};
138+
union {
139+
u32 *xor_check_result;
140+
u32 *crc32_result;
141+
u32 *pq_check_result;
142+
} ;
139143
}
140144
141145
.. _`iop_adma_desc_slot.members`:
@@ -173,6 +177,5 @@ async_tx
173177
{unnamed_union}
174178
anonymous
175179

176-
177180
.. This file was automatic generated / don't edit.
178181

linux_src_doc/arch/arm/mach-omap2/clockdomain_h.rst

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,25 @@ Definition
1818
.. code-block:: c
1919
2020
struct clkdm_autodep {
21-
union clkdm;
21+
union {
22+
const char *name;
23+
struct clockdomain *ptr;
24+
} clkdm;
2225
}
2326
2427
.. _`clkdm_autodep.members`:
2528

2629
Members
2730
-------
2831

29-
clkdm
30-
clockdomain to add wkdep+sleepdep on - set name member only
32+
name
33+
*undescribed*
34+
35+
ptr
36+
*undescribed*
37+
38+
lkdm
39+
*undescribed*
3140

3241
.. _`clkdm_autodep.description`:
3342

@@ -110,7 +119,10 @@ Definition
110119
111120
struct clockdomain {
112121
const char *name;
113-
union pwrdm;
122+
union {
123+
const char *name;
124+
struct powerdomain *ptr;
125+
} pwrdm;
114126
const u16 clktrctrl_mask;
115127
const u8 flags;
116128
u8 _flags;
@@ -133,8 +145,14 @@ Members
133145
name
134146
clockdomain name
135147

136-
pwrdm
137-
powerdomain containing this clockdomain
148+
name
149+
clockdomain name
150+
151+
ptr
152+
*undescribed*
153+
154+
wrdm
155+
*undescribed*
138156

139157
clktrctrl_mask
140158
CLKTRCTRL/AUTOSTATE field mask in CM_CLKSTCTRL reg

linux_src_doc/arch/arm/mach-omap2/omap_hwmod_h.rst

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,9 @@ Definition
337337
const char *clk;
338338
struct clk *_clk;
339339
struct list_head node;
340-
union fw;
340+
union {
341+
struct omap_hwmod_omap2_firewall omap2;
342+
} fw;
341343
u8 width;
342344
u8 user;
343345
u8 flags;
@@ -367,8 +369,11 @@ _clk
367369
node
368370
*undescribed*
369371

370-
fw
371-
interface firewall data
372+
omap2
373+
*undescribed*
374+
375+
w
376+
*undescribed*
372377

373378
width
374379
OCP data width
@@ -745,7 +750,10 @@ Definition
745750
struct omap_hwmod_irq_info *mpu_irqs;
746751
struct omap_hwmod_dma_info *sdma_reqs;
747752
struct omap_hwmod_rst_info *rst_lines;
748-
union prcm;
753+
union {
754+
struct omap_hwmod_omap2_prcm omap2;
755+
struct omap_hwmod_omap4_prcm omap4;
756+
} prcm;
749757
const char *main_clk;
750758
struct clk *_clk;
751759
struct omap_hwmod_opt_clk *opt_clks;
@@ -799,8 +807,14 @@ sdma_reqs
799807
rst_lines
800808
*undescribed*
801809

802-
prcm
803-
PRCM data pertaining to this hwmod
810+
omap2
811+
*undescribed*
812+
813+
omap4
814+
*undescribed*
815+
816+
rcm
817+
*undescribed*
804818

805819
main_clk
806820
main clock: OMAP clock name

linux_src_doc/arch/arm/mach-omap2/powerdomain_h.rst

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,34 +19,37 @@ Definition
1919
2020
struct powerdomain {
2121
const char *name;
22-
union voltdm;
22+
union {
23+
const char *name;
24+
struct voltagedomain *ptr;
25+
} voltdm;
2326
const s16 prcm_offs;
2427
const u8 pwrsts;
2528
const u8 pwrsts_logic_ret;
2629
const u8 flags;
2730
const u8 banks;
28-
const u8 pwrsts_mem_ret;
29-
const u8 pwrsts_mem_on;
31+
const u8 pwrsts_mem_ret[PWRDM_MAX_MEM_BANKS];
32+
const u8 pwrsts_mem_on[PWRDM_MAX_MEM_BANKS];
3033
const u8 prcm_partition;
31-
struct clockdomain *pwrdm_clkdms;
34+
struct clockdomain *pwrdm_clkdms[PWRDM_MAX_CLKDMS];
3235
struct list_head node;
3336
struct list_head voltdm_node;
3437
int state;
35-
unsigned state_counter;
38+
unsigned state_counter[PWRDM_MAX_PWRSTS];
3639
unsigned ret_logic_off_counter;
37-
unsigned ret_mem_off_counter;
40+
unsigned ret_mem_off_counter[PWRDM_MAX_MEM_BANKS];
3841
spinlock_t _lock;
3942
unsigned long _lock_flags;
4043
const u8 pwrstctrl_offs;
4144
const u8 pwrstst_offs;
4245
const u32 logicretstate_mask;
43-
const u32 mem_on_mask;
44-
const u32 mem_ret_mask;
45-
const u32 mem_pwrst_mask;
46-
const u32 mem_retst_mask;
46+
const u32 mem_on_mask[PWRDM_MAX_MEM_BANKS];
47+
const u32 mem_ret_mask[PWRDM_MAX_MEM_BANKS];
48+
const u32 mem_pwrst_mask[PWRDM_MAX_MEM_BANKS];
49+
const u32 mem_retst_mask[PWRDM_MAX_MEM_BANKS];
4750
#ifdef CONFIG_PM_DEBUG
4851
s64 timer;
49-
s64 state_timer;
52+
s64 state_timer[PWRDM_MAX_PWRSTS];
5053
#endif
5154
}
5255
@@ -58,8 +61,14 @@ Members
5861
name
5962
Powerdomain name
6063

61-
voltdm
62-
voltagedomain containing this powerdomain
64+
name
65+
Powerdomain name
66+
67+
ptr
68+
*undescribed*
69+
70+
oltdm
71+
*undescribed*
6372

6473
prcm_offs
6574
the address offset from CM_BASE/PRM_BASE

linux_src_doc/arch/arm/mach-omap2/voltage_h.rst

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,14 @@ Definition
7070
struct omap_voltdm_pmic *pmic;
7171
struct omap_vp_param *vp_param;
7272
struct omap_vc_param *vc_param;
73-
u32 (*read)(u8 offset);
74-
void (*write)(u32 val, u8 offset);
73+
u32 (*read) (u8 offset);
74+
void (*write) (u32 val, u8 offset);
7575
u32 (*rmw)(u32 mask, u32 bits, u8 offset);
76-
union sys_clk;
77-
int (*scale)(struct voltagedomain *voltdm, unsigned long target_volt);
76+
union {
77+
const char *name;
78+
u32 rate;
79+
} sys_clk;
80+
int (*scale) (struct voltagedomain *voltdm, unsigned long target_volt);
7881
u32 nominal_volt;
7982
struct omap_volt_data *volt_data;
8083
}
@@ -120,8 +123,14 @@ write
120123
rmw
121124
*undescribed*
122125

123-
sys_clk
124-
system clock name/frequency, used for various timing calculations
126+
name
127+
Name of the voltage domain which can be used as a unique identifier.
128+
129+
rate
130+
*undescribed*
131+
132+
ys_clk
133+
*undescribed*
125134

126135
scale
127136
function used to scale the voltage of the voltagedomain
@@ -164,8 +173,8 @@ Definition
164173
bool i2c_high_speed;
165174
u32 i2c_pad_load;
166175
u8 i2c_mcode;
167-
unsigned long (*vsel_to_uv)(const u8 vsel);
168-
u8 (*uv_to_vsel)(unsigned long uV);
176+
unsigned long (*vsel_to_uv) (const u8 vsel);
177+
u8 (*uv_to_vsel) (unsigned long uV);
169178
}
170179
171180
.. _`omap_voltdm_pmic.members`:

linux_src_doc/arch/arm/plat-samsung/include/plat/cpu-freq-core_h.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Definition
163163
.. code-block:: c
164164
165165
struct s3c_iotimings {
166-
union s3c_iobank bank;
166+
union s3c_iobank bank[MAX_BANKS];
167167
}
168168
169169
.. _`s3c_iotimings.members`:

linux_src_doc/arch/arm/plat-samsung/include/plat/gpio-core_h.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Definition
5858
int group;
5959
spinlock_t lock;
6060
#ifdef CONFIG_PM
61-
u32 pm_save;
61+
u32 pm_save[4];
6262
#endif
6363
u32 bitmap_gpio_int;
6464
}

linux_src_doc/arch/metag/include/uapi/asm/ptrace_h.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Definition
1818
.. code-block:: c
1919
2020
struct user_gp_regs {
21-
unsigned long dx;
22-
unsigned long ax;
21+
unsigned long dx[8][2];
22+
unsigned long ax[4][2];
2323
unsigned long pc;
2424
unsigned long status;
2525
unsigned long rpt;
@@ -132,7 +132,7 @@ Definition
132132
.. code-block:: c
133133
134134
struct user_rp_state {
135-
unsigned long long entries;
135+
unsigned long long entries[6];
136136
unsigned long mask;
137137
}
138138

linux_src_doc/arch/metag/kernel/perf/perf_event_h.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Definition
1818
.. code-block:: c
1919
2020
struct cpu_hw_events {
21-
struct perf_event *events;
22-
unsigned long used_mask;
21+
struct perf_event *events[MAX_HWEVENTS];
22+
unsigned long used_mask[BITS_TO_LONGS(MAX_HWEVENTS)];
2323
raw_spinlock_t pmu_lock;
2424
}
2525
@@ -71,7 +71,7 @@ Definition
7171
u64 (*read)(int idx);
7272
void (*write)(int idx, u32 val);
7373
int (*event_map)(int idx);
74-
const int cache_events;
74+
const int (*cache_events)[PERF_COUNT_HW_CACHE_MAX][PERF_COUNT_HW_CACHE_OP_MAX] [PERF_COUNT_HW_CACHE_RESULT_MAX];
7575
u32 max_period;
7676
int max_events;
7777
atomic_t active_events;

linux_src_doc/arch/mips/include/asm/pm_h.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Definition
1919
2020
struct mips_static_suspend_state {
2121
#ifdef CONFIG_EVA
22-
unsigned long segctl;
22+
unsigned long segctl[3];
2323
#endif
2424
unsigned long sp;
2525
}

0 commit comments

Comments
 (0)