| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * ds.c -- 16-bit PCMCIA core support |
|---|
| 3 | | - * |
|---|
| 4 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 5 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 6 | | - * published by the Free Software Foundation. |
|---|
| 7 | 4 | * |
|---|
| 8 | 5 | * The initial developer of the original code is David A. Hinds |
|---|
| 9 | 6 | * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds |
|---|
| .. | .. |
|---|
| 67 | 64 | "be 0x%x\n", p_drv->name, did->prod_id[i], |
|---|
| 68 | 65 | did->prod_id_hash[i], hash); |
|---|
| 69 | 66 | printk(KERN_DEBUG "pcmcia: see " |
|---|
| 70 | | - "Documentation/pcmcia/devicetable.txt for " |
|---|
| 67 | + "Documentation/pcmcia/devicetable.rst for " |
|---|
| 71 | 68 | "details\n"); |
|---|
| 72 | 69 | } |
|---|
| 73 | 70 | did++; |
|---|
| .. | .. |
|---|
| 519 | 516 | p_dev->dev.parent = s->dev.parent; |
|---|
| 520 | 517 | p_dev->dev.release = pcmcia_release_dev; |
|---|
| 521 | 518 | /* by default don't allow DMA */ |
|---|
| 522 | | - p_dev->dma_mask = DMA_MASK_NONE; |
|---|
| 519 | + p_dev->dma_mask = 0; |
|---|
| 523 | 520 | p_dev->dev.dma_mask = &p_dev->dma_mask; |
|---|
| 524 | 521 | dev_set_name(&p_dev->dev, "%d.%d", p_dev->socket->sock, p_dev->device_no); |
|---|
| 525 | 522 | if (!dev_name(&p_dev->dev)) |
|---|