fs/adfs: move append_filetype_suffix() into adfs_object_fixup()
append_filetype_suffix() is now only used in adfs_object_fixup(), so move it there. Acked-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
This commit is contained in:
@@ -113,19 +113,6 @@ struct object_info {
|
||||
__u16 filetype;
|
||||
};
|
||||
|
||||
/* RISC OS 12-bit filetype converts to ,xyz hex filename suffix */
|
||||
static inline int append_filetype_suffix(char *buf, __u16 filetype)
|
||||
{
|
||||
if (filetype == 0xffff) /* no explicit 12-bit file type was set */
|
||||
return 0;
|
||||
|
||||
*buf++ = ',';
|
||||
*buf++ = hex_asc_lo(filetype >> 8);
|
||||
*buf++ = hex_asc_lo(filetype >> 4);
|
||||
*buf++ = hex_asc_lo(filetype >> 0);
|
||||
return 4;
|
||||
}
|
||||
|
||||
struct adfs_dir_ops {
|
||||
int (*read)(struct super_block *sb, unsigned int id, unsigned int sz, struct adfs_dir *dir);
|
||||
int (*setpos)(struct adfs_dir *dir, unsigned int fpos);
|
||||
|
Reference in New Issue
Block a user