/* * QNX6 file system, Linux implementation. * * Version : 1.0.0 * * History : * * 01-02-2012 by Kai Bankett (chaosman@ontika.net) : first release. * 16-02-2012 pagemap extension by Al Viro * */ #include "qnx6.h" struct dentry *qnx6_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags) { unsigned ino; struct page *page; struct inode *foundinode = NULL; const char *name = dentry->d_name.name; int len = dentry->d_name.len; if (len > QNX6_LONG_NAME_MAX) return ERR_PTR(-ENAMETOOLONG); ino = qnx6_find_entry(len, dir, name, &page); if (ino) { foundinode = qnx6_iget(dir->i_sb, ino); qnx6_put_page(page); if (IS_ERR(foundinode)) { pr_debug("lookup->iget -> error %ld\n", PTR_ERR(foundinode)); return ERR_CAST(foundinode); } } else { pr_debug("%s(): not found %s\n", __func__, name); return NULL; } d_add(dentry, foundinode); return NULL; } id' value='dd86e373e09fb16b83e8adf5c48c421a4ca76468'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/include/uapi/drm/drm.h
ctrl'>
AgeCommit message (Collapse)AuthorFilesLines
space:
mode:
authorMarcel J.E. Mol <marcel@mesa.nl>2017-01-30 19:26:40 +0100
committerJohan Hovold <johan@kernel.org>2017-01-31 17:27:04 +0100
commitd07830db1bdb254e4b50d366010b219286b8c937 (patch)
tree354d7fca237fa3d7e7e63c2196eaa4e1086838ea /include/dt-bindings/sound/audio-jack-events.h
parent5d03a2fd2292e71936c4235885c35ccc3c94695b (diff)
USB: serial: pl2303: add ATEN device ID
Seems that ATEN serial-to-usb devices using pl2303 exist with different device ids. This patch adds a missing device ID so it is recognised by the driver. Signed-off-by: Marcel J.E. Mol <marcel@mesa.nl> Cc: stable <stable@vger.kernel.org> Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'include/dt-bindings/sound/audio-jack-events.h')