Skip to content

Commit 152d057

Browse files
committed
lintに対応して修正
1 parent f260f46 commit 152d057

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

src/drivers/rtmouse.h

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -285,12 +285,18 @@ int dev_open(struct inode *inode, struct file *filep);
285285
int dev_release(struct inode *inode, struct file *filep);
286286
int i2c_dev_open(struct inode *inode, struct file *filep);
287287
int i2c_dev_release(struct inode *inode, struct file *filep);
288-
ssize_t led_write(struct file *filep, const char __user *buf, size_t count, loff_t *f_pos);
289-
ssize_t buzzer_write(struct file *filep, const char __user *buf, size_t count, loff_t *f_pos);
290-
ssize_t rawmotor_l_write(struct file *filep, const char __user *buf, size_t count, loff_t *f_pos);
291-
ssize_t rawmotor_r_write(struct file *filep, const char __user *buf, size_t count, loff_t *f_pos);
292-
ssize_t motoren_write(struct file *filep, const char __user *buf, size_t count, loff_t *f_pos);
293-
ssize_t motor_write(struct file *filep, const char __user *buf, size_t count, loff_t *f_pos);
288+
ssize_t led_write(struct file *filep, const char __user *buf, size_t count,
289+
loff_t *f_pos);
290+
ssize_t buzzer_write(struct file *filep, const char __user *buf, size_t count,
291+
loff_t *f_pos);
292+
ssize_t rawmotor_l_write(struct file *filep, const char __user *buf,
293+
size_t count, loff_t *f_pos);
294+
ssize_t rawmotor_r_write(struct file *filep, const char __user *buf,
295+
size_t count, loff_t *f_pos);
296+
ssize_t motoren_write(struct file *filep, const char __user *buf, size_t count,
297+
loff_t *f_pos);
298+
ssize_t motor_write(struct file *filep, const char __user *buf, size_t count,
299+
loff_t *f_pos);
294300
int rpi_gpio_function_set(int pin, uint32_t func);
295301
void rpi_gpio_set32(uint32_t mask, uint32_t val);
296302
void rpi_gpio_clear32(uint32_t mask, uint32_t val);

0 commit comments

Comments
 (0)