Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 208221
b: refs/heads/master
c: be7a12b
h: refs/heads/master
i:
  208219: da9e62b
v: v3
  • Loading branch information
Stephen Hemminger authored and Jens Axboe committed Aug 7, 2010
1 parent 1308454 commit 24abf29
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 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: 285203c8ff541a775f27148c06c58b96822d8b68
refs/heads/master: be7a12bb1a7dc185d5143e3ae434f8a855f66a31
14 changes: 7 additions & 7 deletions trunk/drivers/block/floppy.c
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ static int _lock_fdc(int drive, bool interruptible, int line)
_lock_fdc(drive, interruptible, __LINE__)

/* unlocks the driver */
static inline void unlock_fdc(void)
static void unlock_fdc(void)
{
unsigned long flags;

Expand Down Expand Up @@ -1224,7 +1224,7 @@ static int need_more_output(void)
/* Set perpendicular mode as required, based on data rate, if supported.
* 82077 Now tested. 1Mbps data rate only possible with 82077-1.
*/
static inline void perpendicular_mode(void)
static void perpendicular_mode(void)
{
unsigned char perp_mode;

Expand Down Expand Up @@ -3033,7 +3033,7 @@ static inline int fd_copyin(void __user *param, void *address,
return copy_from_user(address, param, size) ? -EFAULT : 0;
}

static inline const char *drive_name(int type, int drive)
static const char *drive_name(int type, int drive)
{
struct floppy_struct *floppy;

Expand Down Expand Up @@ -3103,7 +3103,7 @@ static struct cont_t raw_cmd_cont = {
.done = raw_cmd_done
};

static inline int raw_cmd_copyout(int cmd, void __user *param,
static int raw_cmd_copyout(int cmd, void __user *param,
struct floppy_raw_cmd *ptr)
{
int ret;
Expand Down Expand Up @@ -3148,7 +3148,7 @@ static void raw_cmd_free(struct floppy_raw_cmd **ptr)
}
}

static inline int raw_cmd_copyin(int cmd, void __user *param,
static int raw_cmd_copyin(int cmd, void __user *param,
struct floppy_raw_cmd **rcmd)
{
struct floppy_raw_cmd *ptr;
Expand Down Expand Up @@ -3266,7 +3266,7 @@ static int invalidate_drive(struct block_device *bdev)
return 0;
}

static inline int set_geometry(unsigned int cmd, struct floppy_struct *g,
static int set_geometry(unsigned int cmd, struct floppy_struct *g,
int drive, int type, struct block_device *bdev)
{
int cnt;
Expand Down Expand Up @@ -3365,7 +3365,7 @@ static int ioctl_table[] = {
FDTWADDLE
};

static inline int normalize_ioctl(int *cmd, int *size)
static int normalize_ioctl(int *cmd, int *size)
{
int i;

Expand Down

0 comments on commit 24abf29

Please sign in to comment.