staging: olpc_dcon: Line up parentheses in func calls and defs
Line up arguments to opening parentheses and ensure lines stay under 80 columns, since checkpatch.pl was complaining about incorrect indentation in function calls and definitions. Signed-off-by: Zebulon McCorkle <zebmccorkle@zeb.fun> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f3b7e9019d
commit
848d9eabca
|
@ -393,7 +393,8 @@ static void dcon_set_source_sync(struct dcon_priv *dcon, int arg)
|
|||
}
|
||||
|
||||
static ssize_t dcon_mode_show(struct device *dev,
|
||||
struct device_attribute *attr, char *buf)
|
||||
struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
struct dcon_priv *dcon = dev_get_drvdata(dev);
|
||||
|
||||
|
@ -401,7 +402,8 @@ static ssize_t dcon_mode_show(struct device *dev,
|
|||
}
|
||||
|
||||
static ssize_t dcon_sleep_show(struct device *dev,
|
||||
struct device_attribute *attr, char *buf)
|
||||
struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
struct dcon_priv *dcon = dev_get_drvdata(dev);
|
||||
|
||||
|
@ -409,7 +411,8 @@ static ssize_t dcon_sleep_show(struct device *dev,
|
|||
}
|
||||
|
||||
static ssize_t dcon_freeze_show(struct device *dev,
|
||||
struct device_attribute *attr, char *buf)
|
||||
struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
struct dcon_priv *dcon = dev_get_drvdata(dev);
|
||||
|
||||
|
@ -417,7 +420,8 @@ static ssize_t dcon_freeze_show(struct device *dev,
|
|||
}
|
||||
|
||||
static ssize_t dcon_mono_show(struct device *dev,
|
||||
struct device_attribute *attr, char *buf)
|
||||
struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
struct dcon_priv *dcon = dev_get_drvdata(dev);
|
||||
|
||||
|
@ -425,13 +429,15 @@ static ssize_t dcon_mono_show(struct device *dev,
|
|||
}
|
||||
|
||||
static ssize_t dcon_resumeline_show(struct device *dev,
|
||||
struct device_attribute *attr, char *buf)
|
||||
struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
return sprintf(buf, "%d\n", resumeline);
|
||||
}
|
||||
|
||||
static ssize_t dcon_mono_store(struct device *dev,
|
||||
struct device_attribute *attr, const char *buf, size_t count)
|
||||
struct device_attribute *attr,
|
||||
const char *buf, size_t count)
|
||||
{
|
||||
unsigned long enable_mono;
|
||||
int rc;
|
||||
|
@ -446,7 +452,8 @@ static ssize_t dcon_mono_store(struct device *dev,
|
|||
}
|
||||
|
||||
static ssize_t dcon_freeze_store(struct device *dev,
|
||||
struct device_attribute *attr, const char *buf, size_t count)
|
||||
struct device_attribute *attr,
|
||||
const char *buf, size_t count)
|
||||
{
|
||||
struct dcon_priv *dcon = dev_get_drvdata(dev);
|
||||
unsigned long output;
|
||||
|
@ -474,7 +481,8 @@ static ssize_t dcon_freeze_store(struct device *dev,
|
|||
}
|
||||
|
||||
static ssize_t dcon_resumeline_store(struct device *dev,
|
||||
struct device_attribute *attr, const char *buf, size_t count)
|
||||
struct device_attribute *attr,
|
||||
const char *buf, size_t count)
|
||||
{
|
||||
unsigned short rl;
|
||||
int rc;
|
||||
|
@ -490,7 +498,8 @@ static ssize_t dcon_resumeline_store(struct device *dev,
|
|||
}
|
||||
|
||||
static ssize_t dcon_sleep_store(struct device *dev,
|
||||
struct device_attribute *attr, const char *buf, size_t count)
|
||||
struct device_attribute *attr,
|
||||
const char *buf, size_t count)
|
||||
{
|
||||
unsigned long output;
|
||||
int ret;
|
||||
|
@ -641,7 +650,8 @@ static int dcon_probe(struct i2c_client *client, const struct i2c_device_id *id)
|
|||
/* Add the backlight device for the DCON */
|
||||
dcon_bl_props.brightness = dcon->bl_val;
|
||||
dcon->bl_dev = backlight_device_register("dcon-bl", &dcon_device->dev,
|
||||
dcon, &dcon_bl_ops, &dcon_bl_props);
|
||||
dcon, &dcon_bl_ops,
|
||||
&dcon_bl_props);
|
||||
if (IS_ERR(dcon->bl_dev)) {
|
||||
dev_err(&client->dev, "cannot register backlight dev (%ld)\n",
|
||||
PTR_ERR(dcon->bl_dev));
|
||||
|
|
|
@ -69,7 +69,7 @@ static int dcon_init_xo_1(struct dcon_priv *dcon)
|
|||
gpio_direction_input(OLPC_GPIO_DCON_IRQ);
|
||||
gpio_direction_input(OLPC_GPIO_DCON_BLANK);
|
||||
gpio_direction_output(OLPC_GPIO_DCON_LOAD,
|
||||
dcon->curr_src == DCON_SOURCE_CPU);
|
||||
dcon->curr_src == DCON_SOURCE_CPU);
|
||||
|
||||
/* Set up the interrupt mappings */
|
||||
|
||||
|
|
Loading…
Reference in New Issue