Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
authorHerbert Xu <herbert@gondor.apana.org.au>
Tue, 3 May 2016 08:01:52 +0000 (16:01 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 3 May 2016 08:01:52 +0000 (16:01 +0800)
Merge the crypto tree to pull in the qat adf_init_pf_wq fix.

1  2 
drivers/crypto/qat/qat_common/adf_common_drv.h

@@@ -144,10 -144,6 +144,8 @@@ void adf_disable_aer(struct adf_accel_d
  void adf_dev_restore(struct adf_accel_dev *accel_dev);
  int adf_init_aer(void);
  void adf_exit_aer(void);
- int adf_init_pf_wq(void);
- void adf_exit_pf_wq(void);
 +int adf_init_vf_wq(void);
 +void adf_exit_vf_wq(void);
  int adf_init_admin_comms(struct adf_accel_dev *accel_dev);
  void adf_exit_admin_comms(struct adf_accel_dev *accel_dev);
  int adf_send_admin_init(struct adf_accel_dev *accel_dev);
@@@ -240,9 -236,8 +238,11 @@@ void adf_enable_vf2pf_interrupts(struc
                                 uint32_t vf_mask);
  void adf_enable_pf2vf_interrupts(struct adf_accel_dev *accel_dev);
  void adf_disable_pf2vf_interrupts(struct adf_accel_dev *accel_dev);
 +
 +int adf_vf2pf_init(struct adf_accel_dev *accel_dev);
 +void adf_vf2pf_shutdown(struct adf_accel_dev *accel_dev);
+ int adf_init_pf_wq(void);
+ void adf_exit_pf_wq(void);
  #else
  static inline int adf_sriov_configure(struct pci_dev *pdev, int numvfs)
  {
@@@ -261,13 -256,13 +261,22 @@@ static inline void adf_disable_pf2vf_in
  {
  }
  
 +static inline int adf_vf2pf_init(struct adf_accel_dev *accel_dev)
 +{
 +      return 0;
 +}
 +
 +static inline void adf_vf2pf_shutdown(struct adf_accel_dev *accel_dev)
 +{
 +}
++
+ static inline int adf_init_pf_wq(void)
+ {
+       return 0;
+ }
+ static inline void adf_exit_pf_wq(void)
+ {
+ }
  #endif
  #endif