};
 
 int s3fwrn5_probe(struct nci_dev **ndev, void *phy_id, struct device *pdev,
-       const struct s3fwrn5_phy_ops *phy_ops, unsigned int max_payload)
+       const struct s3fwrn5_phy_ops *phy_ops)
 {
        struct s3fwrn5_info *info;
        int ret;
        info->phy_id = phy_id;
        info->pdev = pdev;
        info->phy_ops = phy_ops;
-       info->max_payload = max_payload;
        mutex_init(&info->mutex);
 
        s3fwrn5_set_mode(info, S3FWRN5_MODE_COLD);
 
 
 #define S3FWRN5_I2C_DRIVER_NAME "s3fwrn5_i2c"
 
-#define S3FWRN5_I2C_MAX_PAYLOAD 32
 #define S3FWRN5_EN_WAIT_TIME 150
 
 struct s3fwrn5_i2c_phy {
        if (ret < 0)
                return ret;
 
-       ret = s3fwrn5_probe(&phy->ndev, phy, &phy->i2c_dev->dev, &i2c_phy_ops,
-               S3FWRN5_I2C_MAX_PAYLOAD);
+       ret = s3fwrn5_probe(&phy->ndev, phy, &phy->i2c_dev->dev, &i2c_phy_ops);
        if (ret < 0)
                return ret;
 
 
        struct device *pdev;
 
        const struct s3fwrn5_phy_ops *phy_ops;
-       unsigned int max_payload;
 
        struct s3fwrn5_fw_info fw_info;
 
 }
 
 int s3fwrn5_probe(struct nci_dev **ndev, void *phy_id, struct device *pdev,
-       const struct s3fwrn5_phy_ops *phy_ops, unsigned int max_payload);
+       const struct s3fwrn5_phy_ops *phy_ops);
 void s3fwrn5_remove(struct nci_dev *ndev);
 
 int s3fwrn5_recv_frame(struct nci_dev *ndev, struct sk_buff *skb,