/* Values for NULL algorithms */ #ifndef _CRYPTO_NULL_H #define _CRYPTO_NULL_H #define NULL_KEY_SIZE 0 #define NULL_BLOCK_SIZE 1 #define NULL_DIGEST_SIZE 0 #define NULL_IV_SIZE 0 struct crypto_skcipher *crypto_get_default_null_skcipher(void); void crypto_put_default_null_skcipher(void); static inline struct crypto_skcipher *crypto_get_default_null_skcipher2(void) { return crypto_get_default_null_skcipher(); } static inline void crypto_put_default_null_skcipher2(void) { crypto_put_default_null_skcipher(); } #endif xt.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2016-04-05 17:17:34 +0200
committerThierry Reding <treding@nvidia.com>2016-04-29 16:39:39 +0200
commit1140f7c8994a3a2a0d7c4972509d98b792617d39 (patch)
tree2c22ea1a570a2e706bb863053b10584a3aa29b92
parent0e55714902857f71ce3f9144f6a73fb8321229ef (diff)
phy: core: Allow children node to be overridden
In order to more flexibly support device tree bindings, allow drivers to override the container of the child nodes. By default the device node of the PHY provider is assumed to be the parent for children, but bindings may decide to add additional levels for better organization. Acked-by: Kishon Vijay Abraham I <kishon@ti.com> Signed-off-by: Thierry Reding <treding@nvidia.com>