Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 259562
b: refs/heads/master
c: 584721c
h: refs/heads/master
v: v3
  • Loading branch information
Vincent Bossier authored and Greg Kroah-Hartman committed Jun 28, 2011
1 parent 44ea41c commit ed236d2
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ed7c221c9a06f23c7521a9bfac2518656258bbb6
refs/heads/master: 584721cab2bdd26f63bfeca60c83f5e6b8eee7d0
4 changes: 2 additions & 2 deletions trunk/drivers/staging/vme/boards/vme_vmivme7805.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ static void __exit vmic_exit(void);
/** Base address to access FPGA register */
static void *vmic_base;

static char driver_name[] = "vmivme_7805";
static const char driver_name[] = "vmivme_7805";

static struct pci_device_id vmic_ids[] = {
static DEFINE_PCI_DEVICE_TABLE(vmic_ids) = {
{ PCI_DEVICE(PCI_VENDOR_ID_VMIC, PCI_DEVICE_ID_VTIMR) },
{ },
};
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/vme/bridges/vme_ca91cx42.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static void __exit ca91cx42_exit(void);
/* Module parameters */
static int geoid;

static char driver_name[] = "vme_ca91cx42";
static const char driver_name[] = "vme_ca91cx42";

static DEFINE_PCI_DEVICE_TABLE(ca91cx42_ids) = {
{ PCI_DEVICE(PCI_VENDOR_ID_TUNDRA, PCI_DEVICE_ID_TUNDRA_CA91C142) },
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/vme/bridges/vme_tsi148.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ static void __exit tsi148_exit(void);
static int err_chk;
static int geoid;

static char driver_name[] = "vme_tsi148";
static const char driver_name[] = "vme_tsi148";

static DEFINE_PCI_DEVICE_TABLE(tsi148_ids) = {
{ PCI_DEVICE(PCI_VENDOR_ID_TUNDRA, PCI_DEVICE_ID_TUNDRA_TSI148) },
Expand Down
24 changes: 12 additions & 12 deletions trunk/drivers/staging/vme/devices/vme_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#include "vme_user.h"

static DEFINE_MUTEX(vme_user_mutex);
static char driver_name[] = "vme_user";
static const char driver_name[] = "vme_user";

static int bus[USER_BUS_MAX];
static unsigned int bus_num;
Expand Down Expand Up @@ -91,18 +91,18 @@ static unsigned int bus_num;
/*
* Structure to handle image related parameters.
*/
typedef struct {
struct image_desc {
void *kern_buf; /* Buffer address in kernel space */
dma_addr_t pci_buf; /* Buffer address in PCI address space */
unsigned long long size_buf; /* Buffer size */
struct semaphore sem; /* Semaphore for locking image */
struct device *device; /* Sysfs device */
struct vme_resource *resource; /* VME resource */
int users; /* Number of current users */
} image_desc_t;
static image_desc_t image[VME_DEVS];
};
static struct image_desc image[VME_DEVS];

typedef struct {
struct driver_stats {
unsigned long reads;
unsigned long writes;
unsigned long ioctls;
Expand All @@ -111,8 +111,8 @@ typedef struct {
unsigned long dmaErrors;
unsigned long timeouts;
unsigned long external;
} driver_stats_t;
static driver_stats_t statistics;
};
static struct driver_stats statistics;

static struct cdev *vme_user_cdev; /* Character device */
static struct class *vme_user_sysfs_class; /* Sysfs class */
Expand All @@ -138,7 +138,7 @@ static long vme_user_unlocked_ioctl(struct file *, unsigned int, unsigned long);
static int __devinit vme_user_probe(struct device *, int, int);
static int __devexit vme_user_remove(struct device *, int, int);

static struct file_operations vme_user_fops = {
static const struct file_operations vme_user_fops = {
.open = vme_user_open,
.release = vme_user_release,
.read = vme_user_read,
Expand Down Expand Up @@ -773,6 +773,7 @@ static int __devinit vme_user_probe(struct device *dev, int cur_bus,

/* Add sysfs Entries */
for (i = 0; i < VME_DEVS; i++) {
int num;
switch (type[i]) {
case MASTER_MINOR:
sprintf(name, "bus/vme/m%%d");
Expand All @@ -789,10 +790,9 @@ static int __devinit vme_user_probe(struct device *dev, int cur_bus,
break;
}

image[i].device =
device_create(vme_user_sysfs_class, NULL,
MKDEV(VME_MAJOR, i), NULL, name,
(type[i] == SLAVE_MINOR) ? i - (MASTER_MAX + 1) : i);
num = (type[i] == SLAVE_MINOR) ? i - (MASTER_MAX + 1) : i;
image[i].device = device_create(vme_user_sysfs_class, NULL,
MKDEV(VME_MAJOR, i), NULL, name, num);
if (IS_ERR(image[i].device)) {
printk(KERN_INFO "%s: Error creating sysfs device\n",
driver_name);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/vme/vme.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ struct vme_device_id {

struct vme_driver {
struct list_head node;
char *name;
const char *name;
const struct vme_device_id *bind_table;
int (*probe) (struct device *, int, int);
int (*remove) (struct device *, int, int);
Expand Down

0 comments on commit ed236d2

Please sign in to comment.