Skip to content

Commit

Permalink
[pb] Add missing trailing newline on "type" attribute
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <mbrown@fensystems.co.uk>
  • Loading branch information
mcb30 committed Oct 12, 2010
1 parent 8b4c642 commit 0abc485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/pulseblaster.c
Expand Up @@ -479,7 +479,7 @@ static ssize_t pb_attr_type_read(struct device *dev,
{
struct pulseblaster *pb = dev_get_drvdata(dev);

return sprintf(buf, "%s", pb->type->name);
return sprintf(buf, "%s\n", pb->type->name);
}

/**
Expand Down

0 comments on commit 0abc485

Please sign in to comment.