mtip32xx: remove unused variable 'port->allocated'
[firefly-linux-kernel-4.4.55.git] / drivers / block / mtip32xx / mtip32xx.c
index b79b59a696f1348f972924626b80a0c10e48e258..0dd5d7633b708418ec11c309d20ecff255dc37ba 100644 (file)
@@ -623,8 +623,7 @@ static void mtip_handle_tfe(struct driver_data *dd)
 
        set_bit(MTIP_PF_EH_ACTIVE_BIT, &port->flags);
 
-       if (test_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags) &&
-                       test_bit(MTIP_TAG_INTERNAL, port->allocated)) {
+       if (test_bit(MTIP_PF_IC_ACTIVE_BIT, &port->flags)) {
                cmd = mtip_cmd_from_tag(dd, MTIP_TAG_INTERNAL);
                dbg_printk(MTIP_DRV_NAME " TFE for the internal command\n");
 
@@ -2625,18 +2624,6 @@ static ssize_t mtip_hw_read_registers(struct file *f, char __user *ubuf,
                                readl(dd->mmio + HOST_IRQ_STAT));
        size += sprintf(&buf[size], "\n");
 
-       size += sprintf(&buf[size], "L/ Allocated     : [ 0x");
-
-       for (n = dd->slot_groups-1; n >= 0; n--) {
-               if (sizeof(long) > sizeof(u32))
-                       group_allocated =
-                               dd->port->allocated[n/2] >> (32*(n&1));
-               else
-                       group_allocated = dd->port->allocated[n];
-               size += sprintf(&buf[size], "%08X ", group_allocated);
-       }
-       size += sprintf(&buf[size], "]\n");
-
        size += sprintf(&buf[size], "L/ Commands in Q : [ 0x");
 
        for (n = dd->slot_groups-1; n >= 0; n--) {