scsi: sun_esp: Use of_node_name_eq for node name comparisons
Convert string compares of DT node names to use of_node_name_eq helper instead. This removes direct access to the node name pointer. Cc: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com> Cc: "Martin K. Petersen" <martin.petersen@oracle.com> Cc: linux-scsi@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
Родитель
3beeabd5f2
Коммит
4b66810303
|
@ -529,11 +529,10 @@ static int esp_sbus_probe(struct platform_device *op)
|
|||
int hme = 0;
|
||||
int ret;
|
||||
|
||||
if (dp->parent &&
|
||||
(!strcmp(dp->parent->name, "espdma") ||
|
||||
!strcmp(dp->parent->name, "dma")))
|
||||
if (of_node_name_eq(dp->parent, "espdma") ||
|
||||
of_node_name_eq(dp->parent, "dma"))
|
||||
dma_node = dp->parent;
|
||||
else if (!strcmp(dp->name, "SUNW,fas")) {
|
||||
else if (of_node_name_eq(dp, "SUNW,fas")) {
|
||||
dma_node = op->dev.of_node;
|
||||
hme = 1;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче