Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 129898
b: refs/heads/master
c: 5dbdf73
h: refs/heads/master
v: v3
  • Loading branch information
Uwe Kleine-König authored and Liam Girdwood committed Jan 17, 2009
1 parent 47e3a23 commit d081e43
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 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: 81156928f8fe31621e467490b9d441c0285998c3
refs/heads/master: 5dbdf7354821e00e4419ac3520d05d126857d56e
4 changes: 2 additions & 2 deletions trunk/drivers/firmware/dell_rbu.c
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ static ssize_t read_rbu_image_type(struct kobject *kobj,
{
int size = 0;
if (!pos)
size = scnprintf(buffer, count, "%s\n", image_type);
size = sprintf(buffer, "%s\n", image_type);
return size;
}

Expand Down Expand Up @@ -648,7 +648,7 @@ static ssize_t read_rbu_packet_size(struct kobject *kobj,
int size = 0;
if (!pos) {
spin_lock(&rbu_data.lock);
size = scnprintf(buffer, count, "%lu\n", rbu_data.packetsize);
size = sprintf(buffer, "%lu\n", rbu_data.packetsize);
spin_unlock(&rbu_data.lock);
}
return size;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/regulator/wm8400-regulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ static struct regulator_desc regulators[] = {
},
};

static int __init wm8400_regulator_probe(struct platform_device *pdev)
static int __devinit wm8400_regulator_probe(struct platform_device *pdev)
{
struct regulator_dev *rdev;

Expand Down
1 change: 0 additions & 1 deletion trunk/security/keys/keyctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ long keyctl_join_session_keyring(const char __user *_name)

/* join the session */
ret = join_session_keyring(name);
kfree(name);

error:
return ret;
Expand Down

0 comments on commit d081e43

Please sign in to comment.