Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scsi: libsas: Delete sas_dump.{c, h}

The code in these files is not longer referenced, so delete them.

Signed-off-by: John Garry <john.garry@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

John Garry and committed by
Martin K. Petersen
1399846d 15bc43f3

-94
-1
drivers/scsi/libsas/Makefile
··· 26 26 sas_phy.o \ 27 27 sas_port.o \ 28 28 sas_event.o \ 29 - sas_dump.o \ 30 29 sas_discover.o \ 31 30 sas_expander.o \ 32 31 sas_scsi_host.o \
-63
drivers/scsi/libsas/sas_dump.c
··· 1 - /* 2 - * Serial Attached SCSI (SAS) Dump/Debugging routines 3 - * 4 - * Copyright (C) 2005 Adaptec, Inc. All rights reserved. 5 - * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com> 6 - * 7 - * This file is licensed under GPLv2. 8 - * 9 - * This program is free software; you can redistribute it and/or 10 - * modify it under the terms of the GNU General Public License as 11 - * published by the Free Software Foundation; either version 2 of the 12 - * License, or (at your option) any later version. 13 - * 14 - * This program is distributed in the hope that it will be useful, but 15 - * WITHOUT ANY WARRANTY; without even the implied warranty of 16 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 - * General Public License for more details. 18 - * 19 - * You should have received a copy of the GNU General Public License 20 - * along with this program; if not, write to the Free Software 21 - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 22 - * 23 - */ 24 - 25 - #include "sas_dump.h" 26 - 27 - static const char *sas_porte_str[] = { 28 - [0] = "PORTE_BYTES_DMAED", 29 - [1] = "PORTE_BROADCAST_RCVD", 30 - [2] = "PORTE_LINK_RESET_ERR", 31 - [3] = "PORTE_TIMER_EVENT", 32 - [4] = "PORTE_HARD_RESET", 33 - }; 34 - 35 - static const char *sas_phye_str[] = { 36 - [0] = "PHYE_LOSS_OF_SIGNAL", 37 - [1] = "PHYE_OOB_DONE", 38 - [2] = "PHYE_OOB_ERROR", 39 - [3] = "PHYE_SPINUP_HOLD", 40 - [4] = "PHYE_RESUME_TIMEOUT", 41 - }; 42 - 43 - void sas_dprint_porte(int phyid, enum port_event pe) 44 - { 45 - SAS_DPRINTK("phy%d: port event: %s\n", phyid, sas_porte_str[pe]); 46 - } 47 - void sas_dprint_phye(int phyid, enum phy_event pe) 48 - { 49 - SAS_DPRINTK("phy%d: phy event: %s\n", phyid, sas_phye_str[pe]); 50 - } 51 - 52 - void sas_dump_port(struct asd_sas_port *port) 53 - { 54 - SAS_DPRINTK("port%d: class:0x%x\n", port->id, port->class); 55 - SAS_DPRINTK("port%d: sas_addr:%llx\n", port->id, 56 - SAS_ADDR(port->sas_addr)); 57 - SAS_DPRINTK("port%d: attached_sas_addr:%llx\n", port->id, 58 - SAS_ADDR(port->attached_sas_addr)); 59 - SAS_DPRINTK("port%d: iproto:0x%x\n", port->id, port->iproto); 60 - SAS_DPRINTK("port%d: tproto:0x%x\n", port->id, port->tproto); 61 - SAS_DPRINTK("port%d: oob_mode:0x%x\n", port->id, port->oob_mode); 62 - SAS_DPRINTK("port%d: num_phys:%d\n", port->id, port->num_phys); 63 - }
-29
drivers/scsi/libsas/sas_dump.h
··· 1 - /* 2 - * Serial Attached SCSI (SAS) Dump/Debugging routines header file 3 - * 4 - * Copyright (C) 2005 Adaptec, Inc. All rights reserved. 5 - * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com> 6 - * 7 - * This file is licensed under GPLv2. 8 - * 9 - * This program is free software; you can redistribute it and/or 10 - * modify it under the terms of the GNU General Public License as 11 - * published by the Free Software Foundation; either version 2 of the 12 - * License, or (at your option) any later version. 13 - * 14 - * This program is distributed in the hope that it will be useful, but 15 - * WITHOUT ANY WARRANTY; without even the implied warranty of 16 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 - * General Public License for more details. 18 - * 19 - * You should have received a copy of the GNU General Public License 20 - * along with this program; if not, write to the Free Software 21 - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 22 - * 23 - */ 24 - 25 - #include "sas_internal.h" 26 - 27 - void sas_dprint_porte(int phyid, enum port_event pe); 28 - void sas_dprint_phye(int phyid, enum phy_event pe); 29 - void sas_dump_port(struct asd_sas_port *port);
-1
drivers/scsi/libsas/sas_event.c
··· 25 25 #include <linux/export.h> 26 26 #include <scsi/scsi_host.h> 27 27 #include "sas_internal.h" 28 - #include "sas_dump.h" 29 28 30 29 int sas_queue_work(struct sas_ha_struct *ha, struct sas_work *sw) 31 30 {