/* * PCM3168A codec i2c driver * * Copyright (C) 2015 Imagination Technologies Ltd. * * Author: Damien Horsley * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. */ #include #include #include #include #include "pcm3168a.h" static int pcm3168a_i2c_probe(struct i2c_client *i2c, const struct i2c_device_id *id) { struct regmap *regmap; regmap = devm_regmap_init_i2c(i2c, &pcm3168a_regmap); if (IS_ERR(regmap)) return PTR_ERR(regmap); return pcm3168a_probe(&i2c->dev, regmap); } static int pcm3168a_i2c_remove(struct i2c_client *i2c) { pcm3168a_remove(&i2c->dev); return 0; } static const struct i2c_device_id pcm3168a_i2c_id[] = { { "pcm3168a", }, { } }; MODULE_DEVICE_TABLE(i2c, pcm3168a_i2c_id); static const struct of_device_id pcm3168a_of_match[] = { { .compatible = "ti,pcm3168a", }, { } }; MODULE_DEVICE_TABLE(of, pcm3168a_of_match); static struct i2c_driver pcm3168a_i2c_driver = { .probe = pcm3168a_i2c_probe, .remove = pcm3168a_i2c_remove, .id_table = pcm3168a_i2c_id, .driver = { .name = "pcm3168a", .of_match_table = pcm3168a_of_match, .pm = &pcm3168a_pm_ops, }, }; module_i2c_driver(pcm3168a_i2c_driver); MODULE_DESCRIPTION("PCM3168A I2C codec driver"); MODULE_AUTHOR("Damien Horsley "); MODULE_LICENSE("GPL v2"); t.cgi/linux/net-next.git/refs/?id=d0d7b10b05945f40fefd4e60f457c61aefa3e9a9'>refslogtreecommitdiff
diff options
context:
space:
mode:
authorParav Pandit <parav@mellanox.com>2017-02-04 11:00:49 -0600
committerDavid S. Miller <davem@davemloft.net>2017-02-06 16:33:29 -0500
commitd0d7b10b05945f40fefd4e60f457c61aefa3e9a9 (patch)
tree1904a8455fc02954af05242261ee36feb1e45d1d /include
parent73cfb2a2e49e166c569360ee60fe023b3efe3cf6 (diff)
net-next: treewide use is_vlan_dev() helper function.
This patch makes use of is_vlan_dev() function instead of flag comparison which is exactly done by is_vlan_dev() helper function. Signed-off-by: Parav Pandit <parav@mellanox.com> Reviewed-by: Daniel Jurgens <danielj@mellanox.com> Acked-by: Stephen Hemminger <stephen@networkplumber.org> Acked-by: Jon Maxwell <jmaxwell37@gmail.com> Acked-by: Johannes Thumshirn <jth@kernel.org> Acked-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/rdma/ib_addr.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/rdma/ib_addr.h b/include/rdma/ib_addr.h