All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] UFS DWC Test Chip pci driver tweaks
@ 2016-05-16 18:59 Joao Pinto
  2016-05-16 18:59 ` [PATCH 1/2] ufs: Test Chip pci driver not dependent of Samsung's Joao Pinto
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Joao Pinto @ 2016-05-16 18:59 UTC (permalink / raw)
  To: martin.petersen; +Cc: linux-scsi, Joao Pinto

This patch set has the tweaks that I described to you in an e-mail, all
related with the ufs test chip pci driver.

Joao Pinto (2):
  ufs: Test Chip pci driver not dependent of Samsung's
  ufs: driver changed to avoid name collision with Samsung's

 drivers/scsi/ufs/Kconfig           | 2 +-
 drivers/scsi/ufs/tc-dwc-g210-pci.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
1.8.1.5


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] ufs: Test Chip pci driver not dependent of Samsung's
  2016-05-16 18:59 [PATCH 0/2] UFS DWC Test Chip pci driver tweaks Joao Pinto
@ 2016-05-16 18:59 ` Joao Pinto
  2016-05-16 18:59 ` [PATCH 2/2] ufs: driver changed to avoid name collision with Samsung's Joao Pinto
  2016-05-20  1:44 ` [PATCH 0/2] UFS DWC Test Chip pci driver tweaks Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Joao Pinto @ 2016-05-16 18:59 UTC (permalink / raw)
  To: martin.petersen; +Cc: linux-scsi, Joao Pinto

This patch breaks the dependency between the two drivers, because they are
completely indenpendent.

Signed-off-by: Joao Pinto <jpinto@synopsys.com>
---
 drivers/scsi/ufs/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/ufs/Kconfig b/drivers/scsi/ufs/Kconfig
index e27b4d4..4796690 100644
--- a/drivers/scsi/ufs/Kconfig
+++ b/drivers/scsi/ufs/Kconfig
@@ -63,7 +63,7 @@ config SCSI_UFSHCD_PCI
 
 config SCSI_UFS_DWC_TC_PCI
 	tristate "DesignWare pci support using a G210 Test Chip"
-	depends on SCSI_UFSHCD_PCI
+	depends on SCSI_UFSHCD && PCI
 	---help---
 	  Synopsys Test Chip is a PHY for prototyping purposes.
 
-- 
1.8.1.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] ufs: driver changed to avoid name collision with Samsung's
  2016-05-16 18:59 [PATCH 0/2] UFS DWC Test Chip pci driver tweaks Joao Pinto
  2016-05-16 18:59 ` [PATCH 1/2] ufs: Test Chip pci driver not dependent of Samsung's Joao Pinto
@ 2016-05-16 18:59 ` Joao Pinto
  2016-05-20  1:44 ` [PATCH 0/2] UFS DWC Test Chip pci driver tweaks Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Joao Pinto @ 2016-05-16 18:59 UTC (permalink / raw)
  To: martin.petersen; +Cc: linux-scsi, Joao Pinto

This patch changes the tc-dwc-g210-pci driver's name to avoid name collisions
with the Smsung's driver.

Signed-off-by: Joao Pinto <jpinto@synopsys.com>
---
 drivers/scsi/ufs/tc-dwc-g210-pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/ufs/tc-dwc-g210-pci.c b/drivers/scsi/ufs/tc-dwc-g210-pci.c
index 0667c76..c09a0fe 100644
--- a/drivers/scsi/ufs/tc-dwc-g210-pci.c
+++ b/drivers/scsi/ufs/tc-dwc-g210-pci.c
@@ -164,7 +164,7 @@ static const struct pci_device_id tc_dwc_g210_pci_tbl[] = {
 MODULE_DEVICE_TABLE(pci, tc_dwc_g210_pci_tbl);
 
 static struct pci_driver tc_dwc_g210_pci_driver = {
-	.name = UFSHCD,
+	.name = "tc-dwc-g210-pci",
 	.id_table = tc_dwc_g210_pci_tbl,
 	.probe = tc_dwc_g210_pci_probe,
 	.remove = tc_dwc_g210_pci_remove,
-- 
1.8.1.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/2] UFS DWC Test Chip pci driver tweaks
  2016-05-16 18:59 [PATCH 0/2] UFS DWC Test Chip pci driver tweaks Joao Pinto
  2016-05-16 18:59 ` [PATCH 1/2] ufs: Test Chip pci driver not dependent of Samsung's Joao Pinto
  2016-05-16 18:59 ` [PATCH 2/2] ufs: driver changed to avoid name collision with Samsung's Joao Pinto
@ 2016-05-20  1:44 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2016-05-20  1:44 UTC (permalink / raw)
  To: Joao Pinto; +Cc: martin.petersen, linux-scsi

>>>>> "Joao" == Joao Pinto <Joao.Pinto@synopsys.com> writes:

Joao,

Joao> This patch set has the tweaks that I described to you in an
Joao> e-mail, all related with the ufs test chip pci driver.

I have applied the amended series to 4.8/scsi-queue.

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-20  1:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-16 18:59 [PATCH 0/2] UFS DWC Test Chip pci driver tweaks Joao Pinto
2016-05-16 18:59 ` [PATCH 1/2] ufs: Test Chip pci driver not dependent of Samsung's Joao Pinto
2016-05-16 18:59 ` [PATCH 2/2] ufs: driver changed to avoid name collision with Samsung's Joao Pinto
2016-05-20  1:44 ` [PATCH 0/2] UFS DWC Test Chip pci driver tweaks Martin K. Petersen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.