Skip to content
Snippets Groups Projects
Commit acbb61e0 authored by Manohar Vanga's avatar Manohar Vanga Committed by Alessandro Rubini
Browse files

fix style warning across files (used checkpatch.pl)


Signed-off-by: default avatarManohar Vanga <manohar.vanga@cern.ch>
parent 8cbedf59
Branches
Tags
No related merge requests found
......@@ -26,7 +26,7 @@ int main(int argc, char **argv)
int fd[2];
int i, j;
if (argc !=3) {
if (argc != 3) {
fprintf(stderr, "%s: use \"%s <ctrl-file> <data-file>\"\n",
argv[0], argv[0]);
exit(1);
......@@ -63,7 +63,7 @@ int main(int argc, char **argv)
/* This is a blocking read to the control file */
i = read(fd[FD_C], &ctrl, sizeof(ctrl));
switch(i) {
switch (i) {
case -1:
fprintf(stderr, "%s: %s: read(): %s\n",
argv[0], argv[1 + FD_C], strerror(errno));
......@@ -121,7 +121,7 @@ int main(int argc, char **argv)
printf("Data:");
printf(" %02x", buf[j]);
if ((j & 0xf) == 0xf || j == i - 1)
putchar('\n');
putchar('\n');
}
putchar('\n');
}
......
......@@ -43,7 +43,7 @@ static DEFINE_ZATTR_STD(ZBUF, zbk_std_zattr) = {
ZATTR_REG(zbuf, ZATTR_ZBUF_MAXLEN, S_IRUGO | S_IWUGO, 0x0, 16),
};
int kmalloc_conf_set (struct kobject *kobj, struct zio_attribute *zattr,
int kmalloc_conf_set(struct kobject *kobj, struct zio_attribute *zattr,
uint32_t usr_val)
{
zattr->value = usr_val;
......@@ -251,9 +251,9 @@ static struct zio_buffer_type zbk_buffer = {
.zattr_set = {
.std_zattr = zbk_std_zattr,
},
.s_op = &zbk_sysfs_ops,
.b_op = &zbk_buffer_ops,
.f_op = &zbk_file_ops,
.s_op = &zbk_sysfs_ops,
.b_op = &zbk_buffer_ops,
.f_op = &zbk_file_ops,
};
static int zbk_init(void)
......
......@@ -14,12 +14,12 @@
* indidual devices may do whatever they want to match hardware.
*/
struct zio_timestamp {
uint64_t secs;
uint64_t ticks;
uint64_t bins;
uint64_t secs;
uint64_t ticks;
uint64_t bins;
};
/*
/*
* The following data item is the control structure that is being exchanged
* on the control device associated to each data device. The size of each
* fields is fixed to ease portability of binary dumps (esp i386/x86-64).
......
......@@ -92,13 +92,19 @@ extern const char zio_zbuf_attr_names[ZATTR_STD_NUM_ZBUF][ZIO_NAME_LEN];
* @ZATTR_EXT_REG: define a zio extended attribute with address register
* @ZATTR_EXT_PRV: define a zio extended attribute with private register
*/
#define ZATTR_REG(zobj ,_type, _mode, _add, _val) [_type] = { \
.attr = {.name = zio_##zobj##_attr_names[_type], .mode = _mode},\
#define ZATTR_REG(zobj, _type, _mode, _add, _val)[_type] = { \
.attr = { \
.name = zio_##zobj##_attr_names[_type], \
.mode = _mode \
}, \
.priv.addr = _add, \
.value = _val, \
}
#define ZATTR_PRV(zobj, _type, _mode, _add, _val) [_type] = { \
.attr = {.name = zio_##zobj##_attr_names[_type], .mode = _mode},\
#define ZATTR_PRV(zobj, _type, _mode, _add, _val)[_type] = { \
.attr = { \
.name = zio_##zobj##_attr_names[_type], \
.mode = _mode \
}, \
.priv.ptr = _add, \
.value = _val, \
}
......
......@@ -34,7 +34,7 @@ static DEFINE_ZATTR_STD(TRIG, ztt_std_attr) = {
static struct zio_attribute ztt_ext_attr[] = {
ZATTR_EXT_REG("ms-period", S_IRUGO | S_IWUGO, 0x10, 2000),
};
int timer_conf_set (struct kobject *kobj, struct zio_attribute *zattr,
int timer_conf_set(struct kobject *kobj, struct zio_attribute *zattr,
uint32_t usr_val)
{
struct zio_ti *ti = to_zio_ti(kobj);
......
......@@ -28,7 +28,7 @@ int main(int argc, char **argv)
int fd[2];
int i, j;
if (argc !=3) {
if (argc != 3) {
fprintf(stderr, "%s: use \"%s <ctrl-file> <data-file>\"\n",
argv[0], argv[0]);
exit(1);
......@@ -65,7 +65,7 @@ int main(int argc, char **argv)
/* This is a blocking read to the control file */
i = read(fd[FD_C], &ctrl, sizeof(ctrl));
switch(i) {
switch (i) {
case -1:
fprintf(stderr, "%s: %s: read(): %s\n",
argv[0], argv[1 + FD_C], strerror(errno));
......@@ -134,7 +134,7 @@ int main(int argc, char **argv)
printf("Data:");
printf(" %02x", buf[j]);
if ((j & 0xf) == 0xf || j == i - 1)
putchar('\n');
putchar('\n');
}
putchar('\n');
}
......
......@@ -97,7 +97,7 @@ static struct zio_buffer_type *zio_buffer_get(char *name)
struct zio_object_list_item *list_item;
list_item = __zio_object_get(&zstat->all_buffer_types, name);
if(!list_item)
if (!list_item)
return ERR_PTR(-ENODEV);
return container_of(list_item->obj_head, struct zio_buffer_type, head);
}
......@@ -111,7 +111,7 @@ static struct zio_trigger_type *zio_trigger_get(char *name)
struct zio_object_list_item *list_item;
list_item = __zio_object_get(&zstat->all_trigger_types, name);
if(!list_item)
if (!list_item)
return ERR_PTR(-ENODEV);
return container_of(list_item->obj_head, struct zio_trigger_type, head);
}
......@@ -349,9 +349,12 @@ static struct zio_attribute *__zattr_clone(const struct zio_attribute *src,
return dest;
}
static void __zattr_unclone(struct zio_attribute *zattr){
static void __zattr_unclone(struct zio_attribute *zattr)
{
kfree(zattr);
}
static int __zattr_set_copy(struct zio_attribute_set *dest,
struct zio_attribute_set *src)
{
......@@ -509,7 +512,7 @@ static ssize_t zattr_store(struct kobject *kobj, struct attribute *attr,
spinlock_t *lock;
pr_debug("%s\n", __func__);
err = strict_strtol(buf, 10, &val);
err = kstrtol(buf, 10, &val);
if (err)
return -EINVAL;
if (zattr->s_op->conf_set) {
......@@ -715,7 +718,7 @@ static int __buffer_create_instance(struct zio_channel *chan)
chan->cset->index,
chan->index);
err = __zattr_set_copy(&bi->zattr_set,&zbuf->zattr_set);
err = __zattr_set_copy(&bi->zattr_set, &zbuf->zattr_set);
if (err)
goto out_clone;
err = zattr_set_create(&bi->head, zbuf->s_op);
......@@ -806,7 +809,7 @@ static int __trigger_create_instance(struct zio_cset *cset)
cset->index);
err = __zattr_set_copy(&ti->zattr_set, &cset->trig->zattr_set);
if(err)
if (err)
goto out_clone;
err = zattr_set_create(&ti->head, cset->trig->s_op);
if (err)
......@@ -960,9 +963,8 @@ static inline void cset_free_chan(struct zio_cset *cset)
{
pr_debug("%s:%d\n", __func__, __LINE__);
/* Only allocated channels need to be freed */
if (cset->flags & ZCSET_CHAN_ALLOC) {
if (cset->flags & ZCSET_CHAN_ALLOC)
kfree(cset->chan);
}
}
static int cset_register(struct zio_cset *cset)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment