Commit 01e5a2a6 authored by Art Haas's avatar Art Haas Committed by Greg Kroah-Hartman

[PATCH] C99 initializer for drivers/usb/image/hpusbscsi.h

Here's a patch for switching the file to use C99 initializers. The patch
is against 2.5.50.
parent fc2000be
...@@ -65,22 +65,22 @@ static int hpusbscsi_scsi_abort (Scsi_Cmnd *srb); ...@@ -65,22 +65,22 @@ static int hpusbscsi_scsi_abort (Scsi_Cmnd *srb);
static void issue_request_sense (struct hpusbscsi *hpusbscsi); static void issue_request_sense (struct hpusbscsi *hpusbscsi);
static Scsi_Host_Template hpusbscsi_scsi_host_template = { static Scsi_Host_Template hpusbscsi_scsi_host_template = {
name: "hpusbscsi", .name = "hpusbscsi",
detect: hpusbscsi_scsi_detect, .detect = hpusbscsi_scsi_detect,
// release: hpusbscsi_scsi_release, // .release = hpusbscsi_scsi_release,
queuecommand: hpusbscsi_scsi_queuecommand, .queuecommand = hpusbscsi_scsi_queuecommand,
eh_abort_handler: hpusbscsi_scsi_abort, .eh_abort_handler = hpusbscsi_scsi_abort,
eh_host_reset_handler: hpusbscsi_scsi_host_reset, .eh_host_reset_handler = hpusbscsi_scsi_host_reset,
sg_tablesize: SG_ALL, .sg_tablesize = SG_ALL,
can_queue: 1, .can_queue = 1,
this_id: -1, .this_id = -1,
cmd_per_lun: 1, .cmd_per_lun = 1,
present: 0, .present = 0,
unchecked_isa_dma: FALSE, .unchecked_isa_dma = FALSE,
use_clustering: TRUE, .use_clustering = TRUE,
emulated: TRUE .emulated = TRUE
}; };
/* defines for internal driver state */ /* defines for internal driver state */
......
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