firewire: adjust whitespace
Remove space before tab and trailing whitespace. Unify indentation of goto target labels. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
Родитель
98b6cbe83b
Коммит
373b2edd86
|
@ -145,7 +145,7 @@ fw_unit_uevent(struct device *dev, char **envp, int num_envp,
|
|||
"MODALIAS=%s", modalias))
|
||||
return -ENOMEM;
|
||||
|
||||
out:
|
||||
out:
|
||||
envp[i] = NULL;
|
||||
|
||||
return 0;
|
||||
|
@ -511,9 +511,9 @@ static void fw_device_init(struct work_struct *work)
|
|||
|
||||
return;
|
||||
|
||||
error_with_device:
|
||||
error_with_device:
|
||||
device_del(&device->device);
|
||||
error:
|
||||
error:
|
||||
cdev_del(&device->cdev);
|
||||
unregister_chrdev_region(device->device.devt, 1);
|
||||
put_device(&device->device);
|
||||
|
|
|
@ -96,7 +96,7 @@ typedef int (*descriptor_callback_t)(struct context *ctx,
|
|||
struct descriptor *d,
|
||||
struct descriptor *last);
|
||||
struct context {
|
||||
struct fw_ohci *ohci;
|
||||
struct fw_ohci *ohci;
|
||||
u32 regs;
|
||||
|
||||
struct descriptor *buffer;
|
||||
|
@ -109,11 +109,9 @@ struct context {
|
|||
|
||||
descriptor_callback_t callback;
|
||||
|
||||
struct tasklet_struct tasklet;
|
||||
struct tasklet_struct tasklet;
|
||||
};
|
||||
|
||||
|
||||
|
||||
struct at_context {
|
||||
struct fw_ohci *ohci;
|
||||
dma_addr_t descriptor_bus;
|
||||
|
@ -1352,8 +1350,8 @@ ohci_allocate_iso_context(struct fw_card *card, int type,
|
|||
list = ohci->it_context_list;
|
||||
callback = handle_it_packet;
|
||||
} else {
|
||||
mask = &ohci->ir_context_mask;
|
||||
list = ohci->ir_context_list;
|
||||
mask = &ohci->ir_context_mask;
|
||||
list = ohci->ir_context_list;
|
||||
if (header_size > 0)
|
||||
callback = handle_ir_dualbuffer_packet;
|
||||
else
|
||||
|
@ -1373,10 +1371,10 @@ ohci_allocate_iso_context(struct fw_card *card, int type,
|
|||
if (index < 0)
|
||||
return ERR_PTR(-EBUSY);
|
||||
|
||||
if (type == FW_ISO_CONTEXT_TRANSMIT)
|
||||
regs = OHCI1394_IsoXmitContextBase(index);
|
||||
else
|
||||
regs = OHCI1394_IsoRcvContextBase(index);
|
||||
if (type == FW_ISO_CONTEXT_TRANSMIT)
|
||||
regs = OHCI1394_IsoXmitContextBase(index);
|
||||
else
|
||||
regs = OHCI1394_IsoRcvContextBase(index);
|
||||
|
||||
ctx = &list[index];
|
||||
memset(ctx, 0, sizeof *ctx);
|
||||
|
@ -1404,7 +1402,7 @@ ohci_allocate_iso_context(struct fw_card *card, int type,
|
|||
|
||||
static int ohci_start_iso(struct fw_iso_context *base, s32 cycle)
|
||||
{
|
||||
struct iso_context *ctx = container_of(base, struct iso_context, base);
|
||||
struct iso_context *ctx = container_of(base, struct iso_context, base);
|
||||
struct fw_ohci *ohci = ctx->context.ohci;
|
||||
u32 cycle_match = 0, mode;
|
||||
int index;
|
||||
|
@ -1439,7 +1437,7 @@ static int ohci_start_iso(struct fw_iso_context *base, s32 cycle)
|
|||
static int ohci_stop_iso(struct fw_iso_context *base)
|
||||
{
|
||||
struct fw_ohci *ohci = fw_ohci(base->card);
|
||||
struct iso_context *ctx = container_of(base, struct iso_context, base);
|
||||
struct iso_context *ctx = container_of(base, struct iso_context, base);
|
||||
int index;
|
||||
|
||||
if (ctx->base.type == FW_ISO_CONTEXT_TRANSMIT) {
|
||||
|
@ -1458,7 +1456,7 @@ static int ohci_stop_iso(struct fw_iso_context *base)
|
|||
static void ohci_free_iso_context(struct fw_iso_context *base)
|
||||
{
|
||||
struct fw_ohci *ohci = fw_ohci(base->card);
|
||||
struct iso_context *ctx = container_of(base, struct iso_context, base);
|
||||
struct iso_context *ctx = container_of(base, struct iso_context, base);
|
||||
unsigned long flags;
|
||||
int index;
|
||||
|
||||
|
@ -1485,7 +1483,7 @@ ohci_queue_iso_transmit(struct fw_iso_context *base,
|
|||
struct fw_iso_buffer *buffer,
|
||||
unsigned long payload)
|
||||
{
|
||||
struct iso_context *ctx = container_of(base, struct iso_context, base);
|
||||
struct iso_context *ctx = container_of(base, struct iso_context, base);
|
||||
struct descriptor *d, *last, *pd;
|
||||
struct fw_iso_packet *p;
|
||||
__le32 *header;
|
||||
|
|
Загрузка…
Ссылка в новой задаче