mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 07:35:10 +00:00
x86/intel_rdt: Cleanup kernel-doc
The kernel-doc is inconsistently formatted. Fix it up. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Fenghua Yu <fenghua.yu@intel.com> Cc: Tony Luck <tony.luck@intel.com> Cc: Vikas Shivappa <vikas.shivappa@linux.intel.com>
This commit is contained in:
parent
de016df88f
commit
17f8ba1dca
1 changed files with 7 additions and 7 deletions
|
@ -46,11 +46,11 @@ int __init rdtgroup_init(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* struct rftype - describe each file in the resctrl file system
|
* struct rftype - describe each file in the resctrl file system
|
||||||
* @name: file name
|
* @name: File name
|
||||||
* @mode: access mode
|
* @mode: Access mode
|
||||||
* @kf_ops: operations
|
* @kf_ops: File operations
|
||||||
* @seq_show: show content of the file
|
* @seq_show: Show content of the file
|
||||||
* @write: write to the file
|
* @write: Write to the file
|
||||||
*/
|
*/
|
||||||
struct rftype {
|
struct rftype {
|
||||||
char *name;
|
char *name;
|
||||||
|
@ -75,7 +75,7 @@ struct rftype {
|
||||||
* @name: Name to use in "schemata" file
|
* @name: Name to use in "schemata" file
|
||||||
* @num_closid: Number of CLOSIDs available
|
* @num_closid: Number of CLOSIDs available
|
||||||
* @max_cbm: Largest Cache Bit Mask allowed
|
* @max_cbm: Largest Cache Bit Mask allowed
|
||||||
* @data_width: Character width of data when displaying
|
* @data_width: Character width of data when displaying
|
||||||
* @min_cbm_bits: Minimum number of consecutive bits to be set
|
* @min_cbm_bits: Minimum number of consecutive bits to be set
|
||||||
* in a cache bit mask
|
* in a cache bit mask
|
||||||
* @domains: All domains for this resource
|
* @domains: All domains for this resource
|
||||||
|
@ -151,7 +151,7 @@ enum {
|
||||||
|
|
||||||
#define for_each_capable_rdt_resource(r) \
|
#define for_each_capable_rdt_resource(r) \
|
||||||
for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\
|
for (r = rdt_resources_all; r < rdt_resources_all + RDT_NUM_RESOURCES;\
|
||||||
r++) \
|
r++) \
|
||||||
if (r->capable)
|
if (r->capable)
|
||||||
|
|
||||||
#define for_each_enabled_rdt_resource(r) \
|
#define for_each_enabled_rdt_resource(r) \
|
||||||
|
|
Loading…
Reference in a new issue