checkpatch: error - spacing
Change-Id: Ie6e1c43581dd4b0734625b3a4e59a4ca79619e99 Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
This commit is contained in:
parent
3bc4039601
commit
39063598db
27 changed files with 312 additions and 308 deletions
|
@ -84,7 +84,7 @@ struct spi_intel_data {
|
|||
#define INTEL_SPI_SSCR1_RFT(__rft) \
|
||||
(((__rft) - 1) << 11)
|
||||
#define INTEL_SPI_SSCR1_EFWR (0x1 << 16)
|
||||
#define INTEL_SPI_SSCR1_STRF (0x1 << 17)
|
||||
#define INTEL_SPI_SSCR1_STRF (0x1 << 17)
|
||||
|
||||
#define INTEL_SPI_SSCR1_TFT_DFLT (8)
|
||||
#define INTEL_SPI_SSCR1_RFT_DFLT (8)
|
||||
|
|
|
@ -78,8 +78,10 @@ struct net_addr {
|
|||
};
|
||||
};
|
||||
|
||||
#define IN6ADDR_ANY_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } }
|
||||
#define IN6ADDR_LOOPBACK_INIT { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 } } }
|
||||
#define IN6ADDR_ANY_INIT { { { 0, 0, 0, 0, 0, 0, 0, 0, 0, \
|
||||
0, 0, 0, 0, 0, 0, 0 } } }
|
||||
#define IN6ADDR_LOOPBACK_INIT { { { 0, 0, 0, 0, 0, 0, 0, \
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1 } } }
|
||||
|
||||
#define INET6_ADDRSTRLEN 46
|
||||
|
||||
|
|
|
@ -28,7 +28,9 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
|
||||
int atoi(const char *s)
|
||||
{
|
||||
int n=0, neg=0;
|
||||
int n = 0;
|
||||
int neg = 0;
|
||||
|
||||
while (isspace(*s)) {
|
||||
s++;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue