Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cdbcd330 authored by Martin Kelly's avatar Martin Kelly Committed by Greg Kroah-Hartman
Browse files

Staging/bcm: Fix whitespace/comments in Ioctl.h



Cleanup whitespace and comments in Ioctl.h in a few ways:
- > 80 character cleanup
- Comment clarification
- More consistent vertical alignment

Signed-off-by: default avatarMartin Kelly <martkell@amazon.com>
Reviewed-by: default avatarMatthias Beyer <mail@beyermatthias.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 33b443e4
Loading
Loading
Loading
Loading
+13 −13
Original line number Diff line number Diff line
@@ -130,7 +130,7 @@ struct bcm_bulk_wrm_buffer {
};

enum bcm_flash2x_section_val {
	NO_SECTION_VAL = 0, /* no section is chosen when absolute offset is given for RD/WR */
	NO_SECTION_VAL = 0, /* no section chosen when absolute offset is given for RD/WR */
	ISO_IMAGE1,
	ISO_IMAGE2,
	DSD0,
@@ -152,11 +152,11 @@ enum bcm_flash2x_section_val {
 * Structure used for READ/WRITE Flash Map2.x
 */
struct bcm_flash2x_readwrite {
	enum bcm_flash2x_section_val Section; /* which section has to be read/written */
	u32 offset;	     /* Offset within Section. */
	u32 numOfBytes;	     /* NOB from the offset */
	enum bcm_flash2x_section_val Section; /* section to be read/written */
	u32 offset; /* offset within section. */
	u32 numOfBytes; /* number of bytes from the offset */
	u32 bVerify;
	void __user *pDataBuff;	     /* Buffer for reading/writing */
	void __user *pDataBuff; /* buffer for reading/writing */
};

/*
@@ -214,7 +214,7 @@ enum {

struct bcm_gpio_multi_info {
	unsigned int uiGPIOCommand; /* 1 for set and 0 for get */
	unsigned int uiGPIOMask;    /* set the correspondig bit to 1 to access GPIO */
	unsigned int uiGPIOMask; /* set the corresponding bit to 1 to access GPIO */
	unsigned int uiGPIOValue; /* 0 or 1; value to be set when command is 1. */
} __packed;