aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/rapidio/devices/tsi721.c3
-rw-r--r--include/linux/rio.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/drivers/rapidio/devices/tsi721.c b/drivers/rapidio/devices/tsi721.c
index d5e1625bbac2..19743597cd95 100644
--- a/drivers/rapidio/devices/tsi721.c
+++ b/drivers/rapidio/devices/tsi721.c
@@ -2165,7 +2165,8 @@ static int __devinit tsi721_setup_mport(struct tsi721_device *priv)
2165 rio_init_dbell_res(&mport->riores[RIO_DOORBELL_RESOURCE], 0, 0xffff); 2165 rio_init_dbell_res(&mport->riores[RIO_DOORBELL_RESOURCE], 0, 0xffff);
2166 rio_init_mbox_res(&mport->riores[RIO_INB_MBOX_RESOURCE], 0, 3); 2166 rio_init_mbox_res(&mport->riores[RIO_INB_MBOX_RESOURCE], 0, 3);
2167 rio_init_mbox_res(&mport->riores[RIO_OUTB_MBOX_RESOURCE], 0, 3); 2167 rio_init_mbox_res(&mport->riores[RIO_OUTB_MBOX_RESOURCE], 0, 3);
2168 strcpy(mport->name, "Tsi721 mport"); 2168 snprintf(mport->name, RIO_MAX_MPORT_NAME, "%s(%s)",
2169 dev_driver_string(&pdev->dev), dev_name(&pdev->dev));
2169 2170
2170 /* Hook up interrupt handler */ 2171 /* Hook up interrupt handler */
2171 2172
diff --git a/include/linux/rio.h b/include/linux/rio.h
index a90ebadd9da0..1a7b6c7787a5 100644
--- a/include/linux/rio.h
+++ b/include/linux/rio.h
@@ -30,6 +30,7 @@
30#define RIO_MAX_MPORTS 8 30#define RIO_MAX_MPORTS 8
31#define RIO_MAX_MPORT_RESOURCES 16 31#define RIO_MAX_MPORT_RESOURCES 16
32#define RIO_MAX_DEV_RESOURCES 16 32#define RIO_MAX_DEV_RESOURCES 16
33#define RIO_MAX_MPORT_NAME 40
33 34
34#define RIO_GLOBAL_TABLE 0xff /* Indicates access of a switch's 35#define RIO_GLOBAL_TABLE 0xff /* Indicates access of a switch's
35 global routing table if it 36 global routing table if it
@@ -255,7 +256,7 @@ struct rio_mport {
255 */ 256 */
256 enum rio_phy_type phy_type; /* RapidIO phy type */ 257 enum rio_phy_type phy_type; /* RapidIO phy type */
257 u32 phys_efptr; 258 u32 phys_efptr;
258 unsigned char name[40]; 259 unsigned char name[RIO_MAX_MPORT_NAME];
259 void *priv; /* Master port private data */ 260 void *priv; /* Master port private data */
260#ifdef CONFIG_RAPIDIO_DMA_ENGINE 261#ifdef CONFIG_RAPIDIO_DMA_ENGINE
261 struct dma_device dma; 262 struct dma_device dma;