Commit c4df2822 authored by Aldo Iljazi's avatar Aldo Iljazi Committed by Greg Kroah-Hartman

Staging: ft1000: ft1000_download: fixed coding style issues

Fixed the following coding style issues:

Lines 84-91,99-106,275,514: Replaced spaces at the start of the lines
with tabs.

Lines 205,271: Inserted spaces after the commas.
Lines 275,1060,1065: Indented the code with tabs instead of spaces.

Line 275: Inserted spaces around '=' and '<', also moved the trailing
statement on the next line.

Line 512: Removed space between function name and open parenthesis.
Line 839: Removed space after '&'.
Line 853: Removed space after '&'.
Signed-off-by: default avatarAldo Iljazi <mail@aldo.io>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c766d23b
...@@ -81,29 +81,29 @@ ...@@ -81,29 +81,29 @@
#define DWNLD_MAG1_PS_HDR_LOC 0x03 #define DWNLD_MAG1_PS_HDR_LOC 0x03
struct dsp_file_hdr { struct dsp_file_hdr {
long version_id; // Version ID of this image format. long version_id; // Version ID of this image format.
long package_id; // Package ID of code release. long package_id; // Package ID of code release.
long build_date; // Date/time stamp when file was built. long build_date; // Date/time stamp when file was built.
long commands_offset; // Offset to attached commands in Pseudo Hdr format. long commands_offset; // Offset to attached commands in Pseudo Hdr format.
long loader_offset; // Offset to bootloader code. long loader_offset; // Offset to bootloader code.
long loader_code_address; // Start address of bootloader. long loader_code_address; // Start address of bootloader.
long loader_code_end; // Where bootloader code ends. long loader_code_end; // Where bootloader code ends.
long loader_code_size; long loader_code_size;
long version_data_offset; // Offset were scrambled version data begins. long version_data_offset; // Offset were scrambled version data begins.
long version_data_size; // Size, in words, of scrambled version data. long version_data_size; // Size, in words, of scrambled version data.
long nDspImages; // Number of DSP images in file. long nDspImages; // Number of DSP images in file.
}; };
#pragma pack(1) #pragma pack(1)
struct dsp_image_info { struct dsp_image_info {
long coff_date; // Date/time when DSP Coff image was built. long coff_date; // Date/time when DSP Coff image was built.
long begin_offset; // Offset in file where image begins. long begin_offset; // Offset in file where image begins.
long end_offset; // Offset in file where image begins. long end_offset; // Offset in file where image begins.
long run_address; // On chip Start address of DSP code. long run_address; // On chip Start address of DSP code.
long image_size; // Size of image. long image_size; // Size of image.
long version; // Embedded version # of DSP code. long version; // Embedded version # of DSP code.
unsigned short checksum; // DSP File checksum unsigned short checksum; // DSP File checksum
unsigned short pad1; unsigned short pad1;
}; };
...@@ -201,7 +201,7 @@ static u16 get_handshake(struct ft1000_usb *ft1000dev, u16 expected_value) ...@@ -201,7 +201,7 @@ static u16 get_handshake(struct ft1000_usb *ft1000dev, u16 expected_value)
} }
/* write the handshake value to the handshake location */ /* write the handshake value to the handshake location */
static void put_handshake(struct ft1000_usb *ft1000dev,u16 handshake_value) static void put_handshake(struct ft1000_usb *ft1000dev, u16 handshake_value)
{ {
u32 tempx; u32 tempx;
u16 tempword; u16 tempword;
...@@ -267,11 +267,12 @@ static u16 get_handshake_usb(struct ft1000_usb *ft1000dev, u16 expected_value) ...@@ -267,11 +267,12 @@ static u16 get_handshake_usb(struct ft1000_usb *ft1000dev, u16 expected_value)
return HANDSHAKE_TIMEOUT_VALUE; return HANDSHAKE_TIMEOUT_VALUE;
} }
static void put_handshake_usb(struct ft1000_usb *ft1000dev,u16 handshake_value) static void put_handshake_usb(struct ft1000_usb *ft1000dev, u16 handshake_value)
{ {
int i; int i;
for (i=0; i<1000; i++); for (i = 0; i < 1000; i++)
;
} }
static u16 get_request_type(struct ft1000_usb *ft1000dev) static u16 get_request_type(struct ft1000_usb *ft1000dev)
...@@ -508,9 +509,9 @@ static int write_blk(struct ft1000_usb *ft1000dev, u16 **pUsFile, u8 **pUcFile, ...@@ -508,9 +509,9 @@ static int write_blk(struct ft1000_usb *ft1000dev, u16 **pUsFile, u8 **pUcFile,
return status; return status;
} }
static void usb_dnld_complete (struct urb *urb) static void usb_dnld_complete(struct urb *urb)
{ {
//DEBUG("****** usb_dnld_complete\n"); //DEBUG("****** usb_dnld_complete\n");
} }
/* writes a block of DSP image to DPRAM /* writes a block of DSP image to DPRAM
...@@ -835,7 +836,7 @@ int scram_dnldr(struct ft1000_usb *ft1000dev, void *pFileStart, ...@@ -835,7 +836,7 @@ int scram_dnldr(struct ft1000_usb *ft1000dev, void *pFileStart,
* Position ASIC DPRAM auto-increment pointer. * Position ASIC DPRAM auto-increment pointer.
*/ */
data = (u16 *) & mailbox_data->data[0]; data = (u16 *) &mailbox_data->data[0];
dpram = (u16) DWNLD_MAG1_PS_HDR_LOC; dpram = (u16) DWNLD_MAG1_PS_HDR_LOC;
if (word_length & 0x1) if (word_length & 0x1)
word_length++; word_length++;
...@@ -849,7 +850,7 @@ int scram_dnldr(struct ft1000_usb *ft1000dev, void *pFileStart, ...@@ -849,7 +850,7 @@ int scram_dnldr(struct ft1000_usb *ft1000dev, void *pFileStart,
status = status =
fix_ft1000_write_dpram32 fix_ft1000_write_dpram32
(ft1000dev, dpram++, (ft1000dev, dpram++,
(u8 *) & templong); (u8 *) &templong);
} }
break; break;
...@@ -1056,12 +1057,12 @@ int scram_dnldr(struct ft1000_usb *ft1000dev, void *pFileStart, ...@@ -1056,12 +1057,12 @@ int scram_dnldr(struct ft1000_usb *ft1000dev, void *pFileStart,
// Check if Card is present // Check if Card is present
status = Harley_Read_Register(&temp, FT1000_REG_SUP_IMASK); status = Harley_Read_Register(&temp, FT1000_REG_SUP_IMASK);
if ( (status != NDIS_STATUS_SUCCESS) || (temp == 0x0000) ) { if ( (status != NDIS_STATUS_SUCCESS) || (temp == 0x0000) ) {
break; break;
} }
status = Harley_Read_Register(&temp, FT1000_REG_ASIC_ID); status = Harley_Read_Register(&temp, FT1000_REG_ASIC_ID);
if ( (status != NDIS_STATUS_SUCCESS) || (temp == 0xffff) ) { if ( (status != NDIS_STATUS_SUCCESS) || (temp == 0xffff) ) {
break; break;
} }
****/ ****/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment