Skip to content

Commit

Permalink
disk: Remove duplicate newlines
Browse files Browse the repository at this point in the history
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <[email protected]>
  • Loading branch information
Marek Vasut authored and trini committed Jul 15, 2024
1 parent 910cef3 commit e794b99
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion disk/part_amiga.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,6 @@ static int part_get_info_amiga(struct blk_desc *desc, int part,
info->blksz = rdb.block_bytes;
bcpl_strcpy((char *)info->name, p->drive_name);


disk_type = g->dos_type;

info->type[0] = (disk_type & 0xFF000000)>>24;
Expand Down
2 changes: 0 additions & 2 deletions disk/part_amiga.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#define DEFAULT_SECTOR_SIZE 512
#endif


#define AMIGA_BLOCK_LIMIT 16

/*
Expand Down Expand Up @@ -102,7 +101,6 @@ struct bootcode_block
u32 load_data[123];
};


#define AMIGA_ID_RDISK 0x5244534B
#define AMIGA_ID_PART 0x50415254
#define AMIGA_ID_BOOT 0x424f4f54
Expand Down
1 change: 0 additions & 1 deletion disk/part_dos.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ static void print_partition_extended(struct blk_desc *desc,
return;
}


/* Print a partition that is relative to its Extended partition table
*/
static int part_get_info_extended(struct blk_desc *desc,
Expand Down
5 changes: 0 additions & 5 deletions disk/part_iso.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
#define BRVD 0x11
#define PVD_OFFSET 0x10


typedef struct iso_boot_rec {
unsigned char desctype; /* type of Volume descriptor: 0 = boot record, 1 = primary, 2 = Supplement, 3 = volume part 0xff trminator */
unsigned char stand_ident[5]; /* "CD001" */
Expand All @@ -19,7 +18,6 @@ typedef struct iso_boot_rec {
unsigned char pointer[4]; /* absolute pointer to Boot Catalog */
} iso_boot_rec_t;


typedef struct iso_pri_rec {
unsigned char desctype; /* type of Volume descriptor: 0 = boot record, 1 = primary, 2 = Supplement, 3 = volume part 0xff trminator */
unsigned char stand_ident[5]; /* "CD001" */
Expand Down Expand Up @@ -109,7 +107,6 @@ typedef struct iso_part_rec {
unsigned int partsiz_BE; /* volume partition size BE */
}iso_part_rec_t;


typedef struct iso_val_entry {
unsigned char header_id; /* Header ID must be 0x01 */
unsigned char platform; /* Platform: 0=x86, 1=PowerPC, 2=MAC */
Expand All @@ -126,7 +123,6 @@ typedef struct iso_header_entry {
char id_str[0x1C]; /* Ident String of sectionr */
} iso_header_entry_t;


typedef struct iso_init_def_entry {
unsigned char boot_ind; /* Boot indicator 0x88=bootable 0=not bootable */
unsigned char boot_media; /* boot Media Type: 0=no Emulation, 1=1.2MB floppy, 2=1.44MB floppy, 3=2.88MB floppy 4=hd (0x80) */
Expand All @@ -137,7 +133,6 @@ typedef struct iso_init_def_entry {
unsigned char rel_block_addr[4]; /* relative Block address */
} iso_init_def_entry_t;


void print_partition_cd(int dev);

#endif /* _PART_CD_H */
3 changes: 0 additions & 3 deletions disk/part_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ extern ldiv_t ldiv (long int __numer, long int __denom);
# define __ldiv_t_defined 1
#endif


static int part_mac_read_ddb(struct blk_desc *desc, mac_driver_desc_t *ddb_p);
static int part_mac_read_pdb(struct blk_desc *desc, int part,
mac_partition_t *pdb_p);
Expand Down Expand Up @@ -90,7 +89,6 @@ static void part_print_mac(struct blk_desc *desc)
gb.rem += 512;
gb.rem /= 1024;


printf ("Block Size=%d, Number of Blocks=%d, "
"Total Capacity: %ld.%ld MB = %ld.%ld GB\n"
"DeviceType=0x%x, DeviceId=0x%x\n\n"
Expand Down Expand Up @@ -148,7 +146,6 @@ static void part_print_mac(struct blk_desc *desc)
return;
}


/*
* Read Device Descriptor Block
*/
Expand Down
1 change: 0 additions & 1 deletion disk/part_mac.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ typedef struct mac_driver_entry {
__u16 type; /* OS Type */
} mac_driver_entry_t;


#define MAC_PARTITION_MAGIC 0x504d

/* type field value for A/UX or other Unix partitions */
Expand Down

0 comments on commit e794b99

Please sign in to comment.